From 31f561a99135e786c52346936ab6a5481fefde9c Mon Sep 17 00:00:00 2001 From: chrisfinazzo Date: Mon, 30 Jan 2017 20:51:25 -0500 Subject: [PATCH 1/2] Fix Shellcheck error --- uninstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uninstall.sh b/uninstall.sh index ca7b83a..107cdf0 100755 --- a/uninstall.sh +++ b/uninstall.sh @@ -3,5 +3,5 @@ # Remove line from bashrc and zshrc if present. for rc in bashrc zshrc; do sed -i '/scm_breeze/d' "$HOME/.$rc" - printf "== Removed SCM Breeze from '$HOME/.$rc'\n" + printf "Removed SCM Breeze from '$HOME/.$rc''%s\n" done From e95b9a33a108642a5c01ca070963fc53a6dfaf07 Mon Sep 17 00:00:00 2001 From: Wilhelmina Drengwitz Date: Tue, 31 Jan 2017 15:42:21 -0500 Subject: [PATCH 2/2] Fix printf usage --- uninstall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uninstall.sh b/uninstall.sh index 107cdf0..0805a6e 100755 --- a/uninstall.sh +++ b/uninstall.sh @@ -3,5 +3,5 @@ # Remove line from bashrc and zshrc if present. for rc in bashrc zshrc; do sed -i '/scm_breeze/d' "$HOME/.$rc" - printf "Removed SCM Breeze from '$HOME/.$rc''%s\n" + printf "Removed SCM Breeze from %s\n" "$HOME/.$rc" done