Skip to content

Commit

Permalink
Change venv path
Browse files Browse the repository at this point in the history
  • Loading branch information
wzykubek committed Aug 30, 2021
1 parent 6583b4c commit 65630c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/sh -l

./venv/bin/flake8 ${1} "${2}"
$HOME/venv/bin/flake8 ${1} "${2}"
4 changes: 2 additions & 2 deletions src/setup.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh -l

python -m venv venv
./venv/bin/pip install flake8 $3
python -m venv $HOME/venv
$HOME/venv/bin/pip install flake8 $3

0 comments on commit 65630c1

Please sign in to comment.