diff options
Diffstat (limited to 'Build/tools/svnchangelog')
-rwxr-xr-x | Build/tools/svnchangelog | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/tools/svnchangelog b/Build/tools/svnchangelog index abcee86da9d..930751fe629 100755 --- a/Build/tools/svnchangelog +++ b/Build/tools/svnchangelog @@ -14,7 +14,7 @@ chicken=${OVERRIDE_CHICKEN-false} mydir=`dirname $0` # Build/tools outdir=`cd $mydir/../logs && pwd` outfile=$outdir/svnlog -test ! -f $outfile || exit 2 # error probably given by the cd +test ! -f $outfile && exit 2 # error probably given by the cd # get the revision number we last logged line=`grep '^r[0-9]' $outfile | head -1 | sed 's/^r//'` |