summaryrefslogtreecommitdiff
path: root/setup-alpine.in
diff options
context:
space:
mode:
authorKevin Daudt <kdaudt@alpinelinux.org>2021-11-27 19:13:49 +0100
committerKevin Daudt <kdaudt@alpinelinux.org>2021-11-27 19:17:47 +0100
commitb3f03bf4704b02146cca4cf1bd7af85011d5273a (patch)
tree98578731f125e44aaebcdb14e32d8335bbe3a43a /setup-alpine.in
parent4103dce44084c5dc3bb067522da6caf8cbdf5662 (diff)
downloadalpine-conf-b3f03bf4704b02146cca4cf1bd7af85011d5273a.zip
setup-alpine: fix typo in answerfile variable
6c70088 (setup-alpine: minor code clean up, 2021-11-16) did a clean-up of the answerfile code, but introduced a type on the `USEANSWERFILE` variable, resulting in answerfiles no longer to be sourced. Closes #10494
Diffstat (limited to 'setup-alpine.in')
-rw-r--r--setup-alpine.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup-alpine.in b/setup-alpine.in
index 0793082..989d38b 100644
--- a/setup-alpine.in
+++ b/setup-alpine.in
@@ -61,7 +61,7 @@ case "$USEANSWERFILE" in
USEANSWERFILE="$temp"
;;
esac
-if [ -n "$USERANSERFILE" ] && [ -e "$USEANSWERFILE" ]; then
+if [ -n "$USEANSWERFILE" ] && [ -e "$USEANSWERFILE" ]; then
. "$USEANSWERFILE"
fi