From c4d15694cf32ff3aaf13317076cf28d10559f962 Mon Sep 17 00:00:00 2001 From: Gator96100 Date: Fri, 3 Aug 2018 18:09:41 +0200 Subject: [PATCH] Fixed check for existing zip file --- msys2/autobuild.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msys2/autobuild.sh b/msys2/autobuild.sh index 87d426b8c..73d462ef7 100644 --- a/msys2/autobuild.sh +++ b/msys2/autobuild.sh @@ -37,7 +37,7 @@ for i in $( ls ); do git pull hash=$(git rev-parse HEAD) date=$(date +%Y%m%d) - if ! ls $copyDir/$i-$arch/$i-$arch-$date-$hash.zip 1> /dev/null 2>&1; then + if ! ls $copyDir/$i-$arch/*-$hash.zip 1> /dev/null 2>&1; then make clean make all if [ $? -eq 0 ]; then @@ -61,4 +61,4 @@ for i in $( ls ); do echo done fi fi -done \ No newline at end of file +done