We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67bd0dc commit 53af47eCopy full SHA for 53af47e
build.sh
@@ -1270,10 +1270,12 @@ lockfile_dir="${build_dir}/lockfile"
1270
gitrev="$(cd "${script_path}"; git rev-parse --short HEAD)"
1271
1272
# Create dir
1273
-for _dir in "${build_dir}" "${cache_dir}" "${airootfs_dir}" "${isofs_dir}" "${lockfile_dir}"; do
1274
- mkdir -p "${_dir}"
+for _dir in build_dir cache_dir airootfs_dir isofs_dir lockfile_dir out_dir; do
+ mkdir -p "$(eval "echo \$${_dir}")"
1275
+ msg_debug "${_dir} is $(realpath "$(eval "echo \$${_dir}")")"
1276
+ eval "${_dir}=\"$(realpath "$(eval "echo \$${_dir}")")\""
1277
done
-ork_dir="$(realpath "${work_dir}")"
1278
+
1279
1280
# Set for special channels
1281
if [[ -d "${channel_dir}.add" ]]; then
0 commit comments