We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f617709 commit 61a09c1Copy full SHA for 61a09c1
gitconsensus/gitconsensus
@@ -1,4 +1,4 @@
1
-#!/usr/bin/env python
+#!/usr/bin/env python3
2
import click
3
import github3
4
import os
makefile
@@ -14,8 +14,8 @@ install:
14
ln -s -f $(ROOT_DIR)/bin/gitconsensus /usr/local/bin/gitconsensus
15
16
dependencies:
17
- if [ ! -d $(ROOT_DIR)/env ]; then virtualenv $(ROOT_DIR)/env; fi
18
- source $(ROOT_DIR)/env/bin/activate; yes w | pip install -r $(ROOT_DIR)/requirements.txt
+ if [ ! -d $(ROOT_DIR)/env ]; then python3 -m venv $(ROOT_DIR)/env; fi
+ source $(ROOT_DIR)/env/bin/activate; yes w | python3 -m pip install -r $(ROOT_DIR)/requirements.txt
19
20
uninstall:
21
if [ -L /usr/local/bin/gitconsensus ]; then \
0 commit comments