From: Johannes Kastl Date: Tue, 30 Jun 2020 16:55:15 +0000 (+0200) Subject: templates/lxc-download.in: make shellcheck happy X-Git-Tag: lxc-5.0.0~401^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3468%2Fhead;p=thirdparty%2Flxc.git templates/lxc-download.in: make shellcheck happy Signed-off-by: Johannes Kastl --- diff --git a/templates/lxc-download.in b/templates/lxc-download.in index f69b18fd4..fbfca32bc 100644 --- a/templates/lxc-download.in +++ b/templates/lxc-download.in @@ -327,7 +327,7 @@ if ! command -V mktemp >/dev/null 2>&1; then DOWNLOAD_TEMP="${DOWNLOAD_TEMP}/tmp/lxc-download.$$" elif [ -n "${DOWNLOAD_TEMP}" ]; then mkdir -p "${DOWNLOAD_TEMP}" - DOWNLOAD_TEMP="$(mktemp -p ${DOWNLOAD_TEMP} -d)" + DOWNLOAD_TEMP="$(mktemp -p "${DOWNLOAD_TEMP}" -d)" else DOWNLOAD_TEMP="${DOWNLOAD_TEMP}$(mktemp -d)" fi