diff options
author | 2020-11-17 00:14:20 +0100 | |
---|---|---|
committer | 2020-11-17 00:14:20 +0100 | |
commit | a6c867d04661cfe2a4d5a01ca5a9b2205f9ea29f (patch) | |
tree | e1cb71724a539687bb79c149fe952ce9c0fe4200 | |
parent | Ensure proper spacing in command (diff) |
Use proper quotation in docker run arguments
-rw-r--r-- | .github/workflows/lint-test.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/lint-test.yaml b/.github/workflows/lint-test.yaml index 20aa3b7..d774516 100644 --- a/.github/workflows/lint-test.yaml +++ b/.github/workflows/lint-test.yaml @@ -54,9 +54,9 @@ jobs: --hostname pdsnk-dev \ -e PYTHONDONTWRITEBYTECODE=1 \ -e PIPENV_PIPFILE='/snekbox/Pipfile\' \ - -e ENV='${PWD}/scripts/.profile' \ - --volume '${PWD}':'${PWD}' \ - --workdir '${PWD}' \ + -e ENV=\"${PWD}/scripts/.profile\" \ + --volume \"${PWD}\":\"${PWD}\" \ + --workdir \"${PWD}\" \ --entrypoint /bin/bash \ ghcr.io/python-discord/snekbox-venv:latest" |