Browse Source

fix: don't error out if .venv exists when setting up

pull/30/head
decentral1se 2 years ago
parent
commit
37964d4a48
No known key found for this signature in database GPG Key ID: 3789458B3D0C410
  1. 3
      Makefile

3
Makefile

@ -1,8 +1,7 @@
default: run
setup:
@python3 -m venv .venv
@.venv/bin/pip install -r requirements.txt
@if [ ! -d ".venv" ]; then python3 -m venv .venv && .venv/bin/pip install -r requirements.txt; fi
run:
@.venv/bin/python octomode.py

Loading…
Cancel
Save