aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Hovorka <[email protected]>2017-07-23 16:25:36 -0600
committerAdam Hovorka <[email protected]>2017-07-23 16:25:36 -0600
commit256cf4d5e214ca4bd0a06a210183d388a7d66038 (patch)
tree179a4417ce3cd0072982b90ca432fad7ff17b3f4
parentaca6211b9017116824a855dbb64c63c4ca49773c (diff)
Update stowsh
-rwxr-xr-xstowsh4
1 files changed, 2 insertions, 2 deletions
diff --git a/stowsh b/stowsh
index 3f9c687..af3c7b1 100755
--- a/stowsh
+++ b/stowsh
@@ -172,10 +172,10 @@ if [ "$0" = "$BASH_SOURCE" ]; then
for i in ${!PACKAGES[*]}; do
pkg=${PACKAGES[$i]}
if [[ $UNINSTALL -eq 1 ]]; then
- if [[ $VERBOSE -gt 0 ]] ; then echoerr "uninstalling $pkg from $TARGET" ; fi
+ if [[ $VERBOSE -gt 0 ]] ; then echoerr "Uninstalling $pkg from $TARGET" ; fi
stowsh_uninstall "$pkg" "$TARGET"
else
- if [[ $VERBOSE -gt 0 ]] ; then echoerr "installing $pkg to $TARGET" ; fi
+ if [[ $VERBOSE -gt 0 ]] ; then echoerr "Installing $pkg to $TARGET" ; fi
stowsh_install "$pkg" "$TARGET"
fi
done