diff options
author | 2018-10-10 17:49:09 +0100 | |
---|---|---|
committer | 2018-10-10 17:49:09 +0100 | |
commit | 4f6706ef1dc0abfefdf75d384b2cd0f28cf9216b (patch) | |
tree | 90658bcb1b9b379aa31ea95499091f216212603f | |
parent | Pepper: See no evil.. (diff) |
Pepper: Fixed syntax again
-rwxr-xr-x | docker/build.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/build.sh b/docker/build.sh index dd703986..7b97afcc 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -12,9 +12,9 @@ docker push pythondiscord/hacktober-bot:latest echo "Deploying on server" - pepper "$SALTAPI_TARGET" state.apply docker/hacktoberbot \ - --saltapi-url="$SALTAPI_URL" --auth="$SALTAPI_EAUTH" \ - --username="$SALTAPI_USER" --password="$SALTAPI_PASS" \ + pepper ${SALTAPI_TARGET} state.apply docker/hacktoberbot \ + --saltapi-url=${SALTAPI_URL} --auth=${SALTAPI_EAUTH} \ + --username=${SALTAPI_USER} --password=${SALTAPI_PASS} \ &> /dev/null # echo "Deploying container" |