summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-04-19 13:11:14 +0200
committerHolger Levsen <holger@layer-acht.org>2017-04-19 13:11:14 +0200
commit512aadece9634604744f95103a53961c31b1b625 (patch)
treeacca542ef9a3bdada1a31fec194b41b243087f3a /bin
parent2f91da5a8f8c8fc2e0aec31066f31e9629570966 (diff)
downloadjenkins.debian.net-512aadece9634604744f95103a53961c31b1b625.tar.xz
reproducible Debian: use sort to find latest entry
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_build_service.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build_service.sh b/bin/reproducible_build_service.sh
index 29a57595..018d9e9c 100755
--- a/bin/reproducible_build_service.sh
+++ b/bin/reproducible_build_service.sh
@@ -19,7 +19,7 @@ set -x
/bin/sleep $(echo "scale=1 ; $(shuf -i 1-230 -n 1)/10" | bc )
BUILD_BASE=/var/lib/jenkins/userContent/reproducible/debian/build_service/$1
-OLD_ID=$(ls -1rt $BUILD_BASE|grep -v latest|tail -1)
+OLD_ID=$(ls -1rt $BUILD_BASE|grep -v latest|sort -n|tail -1)
let BUILD_ID=OLD_ID+1
mkdir -p $BUILD_BASE/$BUILD_ID
(cd $BUILD_BASE ; ln -sf $BUILD_ID latest)