git-project-gitk.sh improvements
authorHugo Villeneuve <hugo@hugovil.com>
Fri, 3 Dec 2021 19:04:45 +0000 (14:04 -0500)
committerHugo Villeneuve <hugo@hugovil.com>
Fri, 3 Dec 2021 19:04:45 +0000 (14:04 -0500)
scripts/git-project-gitk.sh

index 5d698d9..be1b8a0 100755 (executable)
@@ -34,7 +34,8 @@ for r in ./ $(hv_git_get_subrepos_list); do
     fi
 
     pushd ${r} 1> /dev/null
-    gitk &
+    # Use absolute path to prevent using an alias
+    /usr/bin/gitk --all &
     popd 1> /dev/null
     rc=${?}
 done