diff options
-rwxr-xr-x | watch | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,8 +3,8 @@ cd ${BASH_SOURCE%/*} for package in *; do - [ -d $package ] && ( - cd $package + [ -d "$package" ] && ( + cd "$package" [ -f watch ] && ./watch cd .. ) |