ci: fix a typo in tests.sh
NOTE: this typo did not cause anything other than a false message about a missing file.
This commit is contained in:
parent
1733dd9d13
commit
80eed7f2d7
|
@ -40,9 +40,10 @@ else
|
||||||
fi
|
fi
|
||||||
PACKAGE_FILE_NAME="${PACKAGE_NAME}.${PKG_SUFFIX}"
|
PACKAGE_FILE_NAME="${PACKAGE_NAME}.${PKG_SUFFIX}"
|
||||||
|
|
||||||
PACKAGE_FILE="${PACKAGE_PATH}/${PACKAGE_FILE_NAME}.${PKG_SUFFIX}"
|
PACKAGE_FILE="${PACKAGE_PATH}/${PACKAGE_FILE_NAME}"
|
||||||
if ! [ -f "$PACKAGE_FILE" ]; then
|
if ! [ -f "$PACKAGE_FILE" ]; then
|
||||||
echo "$PACKAGE_FILE is not a file"
|
echo "$PACKAGE_FILE is not a file"
|
||||||
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case "$(uname -m)" in
|
case "$(uname -m)" in
|
||||||
|
|
Loading…
Reference in New Issue