Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Woops #5

Merged
merged 7 commits into from Oct 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.