mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
skip empty lines
This commit is contained in:
parent
72de32d989
commit
9cb501328d
@ -100,9 +100,16 @@ before continuing with the next line.";
|
|||||||
# trim leading/tailing whitespaces
|
# trim leading/tailing whitespaces
|
||||||
line="$(echo "${line}" | xargs)" || return $?
|
line="$(echo "${line}" | xargs)" || return $?
|
||||||
space_separated_to_array line pkgs
|
space_separated_to_array line pkgs
|
||||||
|
|
||||||
|
# skip empty lines
|
||||||
|
# shellcheck disable=SC2154
|
||||||
|
if [ "${#pkgs[@]}" -eq 0 ]; then
|
||||||
|
echo "Skipped empty line."
|
||||||
|
continue;
|
||||||
|
fi
|
||||||
|
|
||||||
# Rebuild the docker image with refreshed mirrors => this fetches packages that were built in a previous build stage
|
# Rebuild the docker image with refreshed mirrors => this fetches packages that were built in a previous build stage
|
||||||
update-build-image || return $?
|
update-build-image || return $?
|
||||||
# shellcheck disable=SC2154
|
|
||||||
build-and-push "${pkgs[@]}" || exit $?
|
build-and-push "${pkgs[@]}" || exit $?
|
||||||
done
|
done
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user