diff options
author | Kevin Daudt <kdaudt@alpinelinux.org> | 2021-11-27 19:13:49 +0100 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2021-11-27 19:17:47 +0100 |
commit | b3f03bf4704b02146cca4cf1bd7af85011d5273a (patch) | |
tree | 98578731f125e44aaebcdb14e32d8335bbe3a43a | |
parent | 4103dce44084c5dc3bb067522da6caf8cbdf5662 (diff) | |
download | alpine-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
-rw-r--r-- | setup-alpine.in | 2 |
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 |