diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-06-13 12:00:35 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-06-13 12:00:35 -0700 |
commit | 276a7ab42a6cbeea931b6eeb7a27f56f60b3fb86 (patch) | |
tree | 8ccb117ce5a631ddd6adf10fe953ff4eb33e11d7 /docs | |
parent | baf084ae08377fafe6e147320454a6110cd5765e (diff) | |
download | sncontinue-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.md | 2 |
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
```
|