Skip to content

Commit

Permalink
Additional make install step for pip3 (#4)
Browse files Browse the repository at this point in the history
* Update default make command

* Add Github Actions badge

* Added separate install check for pip3
  • Loading branch information
Ari Kalfus committed Oct 13, 2019
1 parent 074db1e commit b876076
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ all: install provision
.PHONY: install
install:
if [ ! -f /usr/bin/python3 ]; then sudo apt install python3; fi;
if [ ! -f /usr/local/bin/pip3 ]; then sudo apt install python3-pip; fi;
if [ ! -f ~/.local/bin/pipenv ]; then pip3 install pipenv; fi;
if [ ! $$(find ~/.local/share/virtualenvs/ -name "dev_setup*") ]; then pipenv install; fi;
if [ ! -d ~/.ansible/roles/gantsign.visual-studio-code ]; then pipenv run ansible-galaxy install gantsign.visual-studio-code; fi;
Expand Down

0 comments on commit b876076

Please sign in to comment.