mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-21 23:43:11 +01:00
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.
|
||||
.PHONY: demo
|
||||
demo:
|
||||
$(PIP) install -e . --user
|
||||
$(PIP) install -e demo --user
|
||||
# running it with and without --user flag because it started to be problematic for some setups
|
||||
$(PIP) install -e . --user || $(PIP) install -e .
|
||||
$(PIP) install -e demo --user || $(PIP) install -e demo
|
||||
demodesk migrate --noinput
|
||||
# Create superuser; user will be prompted to manually set a password
|
||||
# When you get a prompt, enter a password of your choosing.
|
||||
|
Loading…
Reference in New Issue
Block a user