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 3db03be commit e6c99e8Copy full SHA for e6c99e8
build.sh
@@ -215,11 +215,11 @@ umount_chroot_advance() {
215
# Helper function to run make_*() only one time.
216
run_once() {
217
set -eu
218
- if [[ ! -e "${lockfile_dir}/build.${1}_${arch}" ]]; then
+ if [[ ! -e "${lockfile_dir}/build.${1}" ]]; then
219
msg_debug "Running ${1} ..."
220
mount_airootfs
221
- "${1}"
222
- mkdir -p "${lockfile_dir}"; touch "${lockfile_dir}/build.${1}_${arch}"
+ eval "${@}"
+ mkdir -p "${lockfile_dir}"; touch "${lockfile_dir}/build.${1}"
223
umount_chroot_advance
224
else
225
msg_debug "Skipped because ${1} has already been executed."
0 commit comments