diff --git a/make_default_user.mk b/make_default_user.mk index 0fedf38e4c5f7bc8381d64b7dce30736fd09d45b..36a85d4ad6515275626ddc6caa60271050e2e3b7 100644 --- a/make_default_user.mk +++ b/make_default_user.mk @@ -1,12 +1,10 @@ .PHONY: make_default_user make_default_user: - ifndef USER_EMAIL - USER_EMAIL := $(shell git config --global user.email) - endif - - ifndef USER_PASSWORD - USER_PASSWORD := balkan - endif - - $(PYTHON) manage.py create_dev_user --email="$(USER_EMAIL)" --password="$(USER_PASSWORD)" +ifndef USER_EMAIL + USER_EMAIL := $(shell git config --global user.email) +endif +ifndef USER_PASSWORD + USER_PASSWORD := balkan +endif + $(PYTHON) manage.py create_dev_user --email="$(USER_EMAIL)" --password="$(USER_PASSWORD)" \ No newline at end of file