]> git.phdru.name Git - git-scripts.git/commitdiff
Use `dirname $0` instead of absolute path
authorOleg Broytman <phd@phdru.name>
Tue, 7 Apr 2015 21:20:36 +0000 (00:20 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 7 Apr 2015 21:20:36 +0000 (00:20 +0300)
touch-ALL-repos

index fd63f0e19c0cd3dc3bb0ce69198ef87faa76a1fc..3454a6e44532ec454e11c9250469fae5574efc9e 100755 (executable)
@@ -1,6 +1,9 @@
 #! /bin/sh
 
-exec "`dirname \"$0\"`"/do-all \
+cd "`dirname \"$0\"`" &&
+prog_dir="`pwd`" &&
+
+exec "$prog_dir"/do-all \
    'test "$g" = "$d/.git" || continue; cd "$d" &&' \
-   'echo "$d" && "$HOME"/admin/prog/git-scripts/touch-all &&' \
-   'git submodule foreach "$HOME"/admin/prog/git-scripts/touch-all'
+   'echo "$d" && "$prog_dir"/touch-all &&' \
+   'git submodule foreach "$prog_dir"/touch-all'