Fix UEFITool path on Linux

This commit is contained in:
vit9696 2018-05-07 21:41:42 +03:00
parent 912a1b25b2
commit f383646033

View File

@ -58,9 +58,14 @@ build_tool() {
make || exit 1
# Archive
if [ "$1" = "UEFITool" ] && [ "$UPLATFORM" = "mac" ]; then
if [ "$1" = "UEFITool" ]; then
if [ "$UPLATFORM" = "mac" ]; then
strip -x UEFITool.app/Contents/MacOS/UEFITool || exit 1
zip -qry dist/"${1}_${2}_${UPLATFORM}.zip" UEFITool.app "${4}" || exit 1
else
strip -x "$1" || exit 1
zip -qry dist/"${1}_${2}_${UPLATFORM}.zip" "${1}" "${4}" || exit 1
fi
else
strip -x "$1" || exit 1
zip -qry ../dist/"${1}_${2}_${UPLATFORM}.zip" "${1}" "${4}" || exit 1