1
0
Fork 0

fix missing printf statement

This commit is contained in:
Asif Bacchus 2020-03-13 03:28:03 -06:00
parent 66c27ccd73
commit 79458aa416
2 changed files with 3 additions and 3 deletions

View File

@ -2,4 +2,4 @@
14b11370f980bd10b3cd96ddf3acab73c723f7594127e38d4b90ad09660b5e0a ab-openldap-backup.sh
5257cbc175e1f35061e419f54c953875597996d887b3c882990319ecc2371bfd ab-openldap.params.template
79d96713f2e0a1e9d8c4192077986fc8e6efe805441595d014931ec56163c3c9 ab-openldap.sh
9e0702c1799c1e629387ddd9c36ae7dcad67e11d63c37209904da8b29ec71835 update.sh
665567feb3a5ffbd566baa5ce04773f2aebe0f3470f2a820fde23d852f6263f0 update.sh

View File

@ -31,7 +31,7 @@ updateSuccess=0
# reference constants
containerName='ab-openldap'
containerUpdatePath='docker.asifbacchus.app/ldap/ab-openldap'
containerUpdatePath='docker.asifbacchus.app/ldap/ab-openldap: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\n"
fi