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
commitbd01bcb807ccdffecbf77faef9ec573e5e2da5f0 (patch)
treeabae61cb2ba9251f0124e604200029e3be7f4708 /docs
parent34f2234e8be2b922876d2fcd519e3c124b397fd2 (diff)
downloadsncontinue-bd01bcb807ccdffecbf77faef9ec573e5e2da5f0.tar.gz
sncontinue-bd01bcb807ccdffecbf77faef9ec573e5e2da5f0.tar.bz2
sncontinue-bd01bcb807ccdffecbf77faef9ec573e5e2da5f0.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
```