diff options
author | Adam Hovorka <[email protected]> | 2017-07-23 16:25:36 -0600 |
---|---|---|
committer | Adam Hovorka <[email protected]> | 2017-07-23 16:25:36 -0600 |
commit | 256cf4d5e214ca4bd0a06a210183d388a7d66038 (patch) | |
tree | 179a4417ce3cd0072982b90ca432fad7ff17b3f4 /stowsh | |
parent | aca6211b9017116824a855dbb64c63c4ca49773c (diff) |
Update stowsh
Diffstat (limited to 'stowsh')
-rwxr-xr-x | stowsh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |