aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xwatch4
1 files changed, 2 insertions, 2 deletions
diff --git a/watch b/watch
index a0a2135..7230879 100755
--- a/watch
+++ b/watch
@@ -3,8 +3,8 @@
cd ${BASH_SOURCE%/*}
for package in *; do
- [ -d $package ] && (
- cd $package
+ [ -d "$package" ] && (
+ cd "$package"
[ -f watch ] && ./watch
cd ..
)