From 20ca7e6b130e4b63b79129e41b99a4f288f225f2 Mon Sep 17 00:00:00 2001 From: pvincent Date: Thu, 6 Aug 2026 23:11:18 +0400 Subject: [PATCH] fix5 --- install.sh | 4 ---- lib/init.bash | 2 -- 2 files changed, 6 deletions(-) diff --git a/install.sh b/install.sh index c2142b4..b06fb1c 100755 --- a/install.sh +++ b/install.sh @@ -16,8 +16,6 @@ function bootstrap { tar -xzf main.tar.gz --directory "$DESTINATION" echo "directory: miaou-bash successfully deployed to $DESTINATION" popd || return 3 - else - echo "directory: miaou-bash already deployed!" fi local source_bin="$DESTINATION/miaou-bash/bin/miaou-bash" @@ -25,8 +23,6 @@ function bootstrap { if ! cmp -s "$source_bin" "$dest_bin"; then cp -f "$source_bin" "$dest_bin" echo "executable: /usr/bin/miaou-bash freshly created" - else - echo "executable: /usr/bin/miaou-bash up-to-date!" fi export MIAOU_BASH_DIR="$DESTINATION/miaou-bash" diff --git a/lib/init.bash b/lib/init.bash index 187e62a..8834535 100755 --- a/lib/init.bash +++ b/lib/init.bash @@ -27,8 +27,6 @@ function link_etc { if [[ "$(readlink "$destination/$filename")" != "$source/$filename" ]]; then ln -sf "$source/$filename" "$destination" echo "link $source/$filename updated" - else - echo "link $source/$filename already enabled!" fi else if [[ -f "$destination/$filename" ]]; then