1
0
Fork 0

fix missing printf

This commit is contained in:
Asif Bacchus 2020-03-13 03:31:08 -06:00
parent 79458aa416
commit 3b87ce0661
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ updateSuccess=0
# reference constants
containerName=''
containerUpdatePath='docker.asifbacchus.app/...'
containerUpdatePath='docker.asifbacchus.app/...:latest'
server="https://git.asifbacchus.app/ab-docker/scripts/raw/branch/master/$containerName/"
checksumFilename='checksums.sha256'
@ -49,7 +49,7 @@ if ! docker pull "$containerUpdatePath"; then
printf "There was an error updating the container. Try again later.\n\n"
exit 1
else
"Container updated!\n"
printf "Container updated!\n"
fi