summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_common.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index 3fe391ce..775033c7 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -13,12 +13,15 @@ if [ -f $PACKAGES_DB ] && [ -f $INIT ] ; then
if [ -f $PACKAGES_DB.lock ] ; then
for i in $(seq 0 100) ; do
sleep 15
+ echo "sleeping 15s, $PACKAGES_DB is locked."
if [ ! -f $PACKAGES_DB.lock ] ; then
break
fi
done
- echo "$PACKAGES_DB.lock still exist, exiting."
- exit 1
+ if [ -f $PACKAGES_DB.lock ] ; then
+ echo "$PACKAGES_DB.lock still exist, exiting."
+ exit 1
+ fi
fi
elif [ ! -f ${PACKAGES_DB} ] ; then
echo "Warning: $PACKAGES_DB doesn't exist, creating it now."