summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManuel Messner2018-02-13 15:05:46 +0100
committerManuel Messner2018-02-13 15:22:52 +0100
commit8434e5695389ee50940d70fe845e94a4849781b3 (patch)
tree466d10dda42ce99adcdf49bbd0f18dffdd596601
parentMakefile: boot targets: fix wrong path given to check_rootpw (causing the pas... (diff)
downloadpacker-templates-8434e5695389ee50940d70fe845e94a4849781b3.tar.gz
packer-templates-8434e5695389ee50940d70fe845e94a4849781b3.tar.xz
packer-templates-8434e5695389ee50940d70fe845e94a4849781b3.zip
Makefile: fix faulty indention
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 22cd4b8..e765328 100644
--- a/Makefile
+++ b/Makefile
@@ -74,8 +74,8 @@ HASHER := sha256sum
check_rootpw = $(if $(strip $(ROOTPW)),\
$(if $1,\
$(if $(shell echo "$(ROOTPW)" | $(HASHER) --check --quiet $1/base/rootpw.$(HASHER)),\
- $(error ROOTPW password hash does not match $1/base/rootpw.$(HASHER)),\
- ),\
+ $(error ROOTPW password hash does not match $1/base/rootpw.$(HASHER)),\
+ ),\
),\
$(error No root password is set, set it as ROOTPW in your environment.) \
)