Continuous integration variable

This commit is contained in:
Bob Mottram 2018-05-10 11:13:31 +01:00
parent cc65eb1634
commit 0949cad2d2
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ IMAGE_NAME='full'
USERNAME="$USER"
PASSWORD=
CONTINUOUS_INTEGRATION=
CONTINUOUS_INTEGRATION=""
# IP address of the router (gateway)
ROUTER_IP_ADDRESS="192.168.1.254"

View File

@ -41,7 +41,7 @@ IMAGE = $(NAME).img
ARCHIVE = $(IMAGE).xz
SIGNATURE = $(ARCHIVE).sig
OWNER = 1000
ifeq ("$CONTINUOUS_INTEGRATION", "")
ifeq ($(CONTINUOUS_INTEGRATION), "")
XZ = xz --no-warn --verbose --keep --threads=0 -3 $(IMAGE)
SIGN = -gpg --output $(SIGNATURE) --detach-sig $(ARCHIVE)
else