diff options
Diffstat (limited to 'update_jdn.sh')
-rwxr-xr-x | update_jdn.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/update_jdn.sh b/update_jdn.sh index a5d3fccd..957a39cb 100755 --- a/update_jdn.sh +++ b/update_jdn.sh @@ -15,10 +15,10 @@ TMPFILE=$(mktemp) JJB="jenkins-job-builder $@" # so we can later run some commands only if $0 has been updated… -if [ ! -f $STAMP ] && [ $BASEDIR/$0 -nt $STAMP ] ; then - UP2DATE=false -else +if [ -f $STAMP ] && [ $STAMP -nt $BASEDIR/$0 ] ; then UP2DATE=true +else + UP2DATE=false fi |