mirror of https://github.com/wallabag/wallabag.git
Improve check by using list
See https://stackoverflow.com/a/27335439/569101
This commit is contained in:
parent
49eb5405de
commit
29f5515959
|
@ -3,12 +3,9 @@ TMP_FOLDER=/tmp
|
||||||
RELEASE_FOLDER=wllbg-release
|
RELEASE_FOLDER=wllbg-release
|
||||||
|
|
||||||
# ensure the ENV variable is well defined
|
# ensure the ENV variable is well defined
|
||||||
ifeq ($(origin ENV), prod)
|
AVAILABLE_ENV := prod dev test
|
||||||
# all good ("prod" is a valid env)
|
ifneq ($(filter $(ENV),$(AVAILABLE_ENV)),)
|
||||||
else ifeq ($(origin ENV), dev)
|
# all good
|
||||||
# all good ("dev" is a valid env)
|
|
||||||
else ifeq ($(origin ENV), test)
|
|
||||||
# all good ("test" is a valid env)
|
|
||||||
else
|
else
|
||||||
# not good, force it to "prod"
|
# not good, force it to "prod"
|
||||||
override ENV = prod
|
override ENV = prod
|
||||||
|
|
Loading…
Reference in New Issue