diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-07-06 17:49:58 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-07-06 17:49:58 +0200 |
commit | 83a7f9942cd74b15a397c543e59add6ce0657fd9 (patch) | |
tree | 9090a4d1f40adbf0445577e889311e0d833f0902 | |
parent | a5fcd32fa4ab81c5cc8b9080574d4c4174815979 (diff) | |
download | jenkins.debian.net-83a7f9942cd74b15a397c543e59add6ce0657fd9.tar.xz |
fix fatal typo
-rwxr-xr-x | update_jdn.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/update_jdn.sh b/update_jdn.sh index b6e9adc2..286bad9a 100755 --- a/update_jdn.sh +++ b/update_jdn.sh @@ -16,9 +16,9 @@ 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 - UPTODATE=false + UP2DATE=false else - UPTODATE=true + UP2DATE=true fi |