Skip to content

Commit 1b745d2

Browse files
committed
fix(package.json): correct setup-linux script activation command
1 parent 4415d44 commit 1b745d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/recommendation-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "index.js",
66
"scripts": {
77
"setup-windows": "python -m venv .venv && .venv\\Scripts\\activate && pip install -r requirements.txt",
8-
"setup-linux": "python3 -m venv .venv && source .venv/bin/activate && pip install -r requirements.txt",
8+
"setup-linux": "python3 -m venv .venv && . .venv/bin/activate && pip install -r requirements.txt",
99
"lint": "node bin/lint.js",
1010
"dev": "node bin/dev.js"
1111
},

0 commit comments

Comments
 (0)