aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Kronifer <[email protected]>2021-09-15 08:03:28 -0500
committerGravatar Kronifer <[email protected]>2021-09-15 08:03:28 -0500
commit7b54e96edf3b74e407371a4f4df64c5038106633 (patch)
tree98afbd4743e7eff734e31a5bbc7972629718c3b6
parenttest (diff)
added double quotes to fix strings
-rw-r--r--.gitpod.yml10
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"