[Runtime] Fix pal_loader bash script typo

This commit is contained in:
borysp
2020-02-10 00:13:13 +01:00
committed by Michał Kowalczyk
parent 32c1965fdd
commit d4dcbdd76b
+2 -2
View File
@@ -42,7 +42,7 @@ if [ -z "$PAL_HOST" ]; then
fi
MANIFEST=
PREFIX=
PREFIX=()
PAL_CMD=$RUNTIME_DIR/pal-$PAL_HOST
if [ "$GDB" == "1" ]; then
@@ -84,7 +84,7 @@ if [ ! -f "$PAL_CMD" ]; then
exit 1
fi
if [ ${#PREIFX[@]} -eq 0 ]; then
if [ ${#PREFIX[@]} -eq 0 ]; then
exec "$PAL_CMD" "$MANIFEST" "$@"
else
exec "${PREFIX[@]}" "$PAL_CMD" "$MANIFEST" "$@"