build-all.sh: Fix error message

${PKG} should be expanded.
This commit is contained in:
Henrik Grimler 2021-02-03 17:30:12 +01:00
parent 0905cc6cf7
commit 55ab8e5839
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ fi
exec > >(tee -a "$BUILDALL_DIR"/ALL.out)
exec 2> >(tee -a "$BUILDALL_DIR"/ALL.err >&2)
trap 'echo ERROR: See $BUILDALL_DIR/\${PKG}.err' ERR
trap 'echo ERROR: See $BUILDALL_DIR/${PKG}.err' ERR
while read -r PKG PKG_DIR; do
# Check build status (grepping is a bit crude, but it works)