Skip to content

Commit

Permalink
change make install target so it doesn't fail if it can't create acti…
Browse files Browse the repository at this point in the history
…vate symlink
  • Loading branch information
mlippert committed Mar 27, 2022
1 parent 2b4b6ca commit 68e882e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ init : install ## run install; intended for initializing a fresh repo clone
install : VER ?= 3.9
install : ## create python3 virtual env, install requirements (define VER for other than python3)
@python$(VER) -m venv venv
@ln -s venv/bin/activate activate
-@ln -s venv/bin/activate activate
@source activate ; \
pip install --upgrade pip setuptools wheel ; \
pip install -r requirements.txt ;
Expand Down

0 comments on commit 68e882e

Please sign in to comment.