source referenced version.sh file always exim-4_77_RC2
authorPhil Pennock <pdp@exim.org>
Mon, 3 Oct 2011 23:16:36 +0000 (19:16 -0400)
committerPhil Pennock <pdp@exim.org>
Mon, 3 Oct 2011 23:16:36 +0000 (19:16 -0400)
Tested for version.sh in cwd, but used . to source, assuming that
would pull in file from cwd.  True on BSD (checked after $PATH) but
not part of POSIX and not true for bash when in POSIX mode.

src/scripts/reversion

index 7bc56f620313554516b4b1f50be0457345b89d51..32a867f25ce49dfca2415c0c35db1ba6203da6f3 100755 (executable)
@@ -5,8 +5,8 @@
 # Read version information that was generated by a previous run of
 # this script, or during the release process.
 
-if   [ -f version.sh ]
-then .    version.sh
+if   [ -f ./version.sh ]
+then .    ./version.sh
 elif [ -f ../src/version.sh ]
 then .    ../src/version.sh
 fi