]> git.phdru.name Git - git-scripts.git/commitdiff
Style(unabsorbgitdirs): Use `[]` instead of `test`
authorOleg Broytman <phd@phdru.name>
Tue, 6 Feb 2024 22:15:24 +0000 (01:15 +0300)
committerOleg Broytman <phd@phdru.name>
Tue, 6 Feb 2024 22:15:24 +0000 (01:15 +0300)
submodules/unabsorbgitdirs
submodules/unabsorbgitdirs-recursive

index 2416477c05c4b7716b53ae34fc3ec715d0211b6e..862504063eefa61b7ae0c5ac9b95af7415bf271c 100755 (executable)
@@ -7,9 +7,9 @@ cd "`git rev-parse --show-toplevel`"
 unset GIT_DIR
 
 # If .git/ subdirectory is already here
-test -d .git && exit 0
+[ -d .git ] && exit 0
 
-if ! test -f .git; then
+if ! [ -f .git ]; then
     echo "Error: Cannot find gitlink, aborting" >&2
     exit 1
 fi
index 72b4464a6ceb8ba54acc8eb3d4fd12b462b2fdb8..b6ff9cc13fb13c9342738ca06b175067a9a20b92 100755 (executable)
@@ -18,14 +18,14 @@ cd "`git rev-parse --show-toplevel`"
 unset GIT_DIR
 
 # If .git/ subdirectory is already here
-test -d .git && exit 0
+[ -d .git ] && exit 0
 
-if ! test -f .git; then
+if ! [ -f .git ]; then
     echo "Error: Cannot find gitlink, aborting" >&2
     exit 1
 fi
 
-if test -f .gitmodules; then
+if [ -f .gitmodules ]; then
     git submodule foreach "$PROG_DIR"/"`basename \"$0\"`"
 fi