aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xwatch11
1 files changed, 11 insertions, 0 deletions
diff --git a/watch b/watch
new file mode 100755
index 0000000..dc14520
--- /dev/null
+++ b/watch
@@ -0,0 +1,11 @@
+#!/usr/bin/env bash
+
+packages="pony"
+
+cd ${BASH_SOURCE%/*}
+for package in $packages; do
+ cd $package
+ ./watch
+ cd ..
+done
+