~ chicken-core (chicken-5) 689d41ed86378a363ee4ee3c761edf0211a68ef0
commit 689d41ed86378a363ee4ee3c761edf0211a68ef0
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Mon Jan 21 21:11:02 2013 +0100
Commit: Jim Ursetto <zbigniewsz@gmail.com>
CommitDate: Mon Jan 21 22:34:01 2013 -0600
Use test -f instead of test -e in identify.sh, as the sh(1) variant of Solaris doesn't support -f.
Reported by "mikele", fixed #965.
Signed-off-by: Jim Ursetto <zbigniewsz@gmail.com>
diff --git a/identify.sh b/identify.sh
index 0d41da36..ac9d0529 100755
--- a/identify.sh
+++ b/identify.sh
@@ -6,7 +6,7 @@
# make sure file exists anyway, since branchname is a special case
-if test \! -e "buildbranch"; then
+if test \! -f "buildbranch"; then
touch buildbranch
fi
Trap