Unverified Commit 4d6301a0 by Christian Brauner Committed by GitHub

Merge pull request #2369 from masselstine/master

templates: actually create DOWNLOAD_TEMP directory
parents ae8d875f 6e62213e
...@@ -320,7 +320,7 @@ fi ...@@ -320,7 +320,7 @@ fi
if ! command -V mktemp >/dev/null 2>&1; then if ! command -V mktemp >/dev/null 2>&1; then
DOWNLOAD_TEMP="${DOWNLOAD_TEMP}/tmp/lxc-download.$$" DOWNLOAD_TEMP="${DOWNLOAD_TEMP}/tmp/lxc-download.$$"
else else
DOWNLOAD_TEMP="${DOWNLOAD_TEMP}$(mktemp -d)" DOWNLOAD_TEMP="$(mktemp -p ${DOWNLOAD_TEMP} -d)"
fi fi
# Simply list images # Simply list images
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment