.
continuous-integration/drone/push Build is passing Details
continuous-integration/drone Build is failing Details

This commit is contained in:
Giles Bradshaw 2020-09-24 14:45:58 +01:00
parent 793d43d7c5
commit 80e08768de
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ do
&& docker tag $2 $1$2 \
&& docker push $1$2 && break # substitute your command here
n=$((n+1))
if [ $n ge 2 ]; then
if [ $n -ge 2 ]; then
echo "initialise failed"
exit 1
fi

View File

@ -5,7 +5,7 @@ do
&& break # substitute your command here
n=$((n+1))
if [ $n ge 2 ]; then
if [ $n -ge 2 ]; then
echo "login failed"
exit 1
fi