diff options
author | 2021-09-15 08:03:28 -0500 | |
---|---|---|
committer | 2021-09-15 08:03:28 -0500 | |
commit | 7b54e96edf3b74e407371a4f4df64c5038106633 (patch) | |
tree | 98afbd4743e7eff734e31a5bbc7972629718c3b6 | |
parent | test (diff) |
added double quotes to fix strings
-rw-r--r-- | .gitpod.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.gitpod.yml b/.gitpod.yml index 3925d8f3..fcc425c5 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,7 +1,7 @@ tasks: - - name: Python Environment - before: pyenv install 3.9.6 && pyenv global 3.9.6 + - name: "Python Environment" + before: "pyenv install 3.9.6 && pyenv global 3.9.6" env: - PIP_USER: false - init: pip install poetry - command: poetry install && poetry run pre-commit install + PIP_USER: "false" + init: "pip install poetry" + command: "poetry install && poetry run pre-commit install" |