forked from extern/django-helpdesk
fix(makefile): Avoid --user flag usage if previous PIP run has failed - which makes no difference for virtualenv anyway
This commit is contained in:
parent
c5226e983e
commit
a4eb80c141
5
Makefile
5
Makefile
@ -78,8 +78,9 @@ readme:
|
|||||||
#: demo - Setup demo project using Python3.
|
#: demo - Setup demo project using Python3.
|
||||||
.PHONY: demo
|
.PHONY: demo
|
||||||
demo:
|
demo:
|
||||||
$(PIP) install -e . --user
|
# running it with and without --user flag because it started to be problematic for some setups
|
||||||
$(PIP) install -e demo --user
|
$(PIP) install -e . --user || $(PIP) install -e .
|
||||||
|
$(PIP) install -e demo --user || $(PIP) install -e demo
|
||||||
demodesk migrate --noinput
|
demodesk migrate --noinput
|
||||||
# Create superuser; user will be prompted to manually set a password
|
# Create superuser; user will be prompted to manually set a password
|
||||||
# When you get a prompt, enter a password of your choosing.
|
# When you get a prompt, enter a password of your choosing.
|
||||||
|
Loading…
Reference in New Issue
Block a user