Skip to content

Commit 6d2addc

Browse files
authored
Merge pull request #222 from bscriver123/1afd30a9-b974-421e-b509-740f563083ae
"Refactor to Use 'python' Instead of 'python3' for Environment Consistency"
2 parents 63c5ec8 + 0c36ba1 commit 6d2addc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PROJECT_NAME := $(shell basename $CURDIR)
22
VIRTUAL_ENV := $(CURDIR)/.venv
3-
LOCAL_PYTHON := $(VIRTUAL_ENV)/bin/python3
3+
LOCAL_PYTHON := $(VIRTUAL_ENV)/bin/python
44

55
define HELP
66
Manage $(PROJECT_NAME). Usage:
@@ -98,4 +98,4 @@ clean:
9898
find . -type d -wholename '**/.pytest_cache' -exec rm -rf {} + && \
9999
find . -type d -wholename '**/*.log' -exec rm -rf {} + && \
100100
find . -type d -wholename './.reports/*' -exec rm -rf {} + && \
101-
find . -type d -wholename '**/.webassets-cache' -exec rm -rf {} +
101+
find . -type d -wholename '**/.webassets-cache' -exec rm -rf {} +

0 commit comments

Comments
 (0)