summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNate Sesti <sestinj@gmail.com>2023-06-13 12:00:35 -0700
committerNate Sesti <sestinj@gmail.com>2023-06-13 12:00:35 -0700
commit276a7ab42a6cbeea931b6eeb7a27f56f60b3fb86 (patch)
tree8ccb117ce5a631ddd6adf10fe953ff4eb33e11d7 /docs
parentbaf084ae08377fafe6e147320454a6110cd5765e (diff)
downloadsncontinue-276a7ab42a6cbeea931b6eeb7a27f56f60b3fb86.tar.gz
sncontinue-276a7ab42a6cbeea931b6eeb7a27f56f60b3fb86.tar.bz2
sncontinue-276a7ab42a6cbeea931b6eeb7a27f56f60b3fb86.zip
env to .env to be caught by .gitignore
Diffstat (limited to 'docs')
-rw-r--r--docs/docs/walkthroughs/create-a-recipe.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docs/walkthroughs/create-a-recipe.md b/docs/docs/walkthroughs/create-a-recipe.md
index 3b80df8a..5d80d083 100644
--- a/docs/docs/walkthroughs/create-a-recipe.md
+++ b/docs/docs/walkthroughs/create-a-recipe.md
@@ -93,5 +93,5 @@ class SetUpVenvStep(Step):
if os == "Windows":
await sdk.run("python -m venv env; .\\env\\Scripts\\activate")
else:
- await sdk.run("python3 -m venv env && source env/bin/activate") # MacOS and Linux
+ await sdk.run("python3 -m venv .env && source .env/bin/activate") # MacOS and Linux
```