Skip to content

Commit

Permalink
Woops (#5)
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

* Woops

* Updated make install to add -y to apt installs
  • Loading branch information
Ari Kalfus committed Oct 14, 2019
1 parent b876076 commit b113692
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -4,3 +4,4 @@ venv/
.idea
roles/
.vagrant/
files/secrets.yml
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -5,8 +5,8 @@ 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 /usr/bin/python3 ]; then sudo apt install -y python3; fi;
if [ ! -f /usr/local/bin/pip3 ]; then sudo apt install -y 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
8 changes: 0 additions & 8 deletions files/secrets.yml

This file was deleted.

0 comments on commit b113692

Please sign in to comment.