mirror of
https://github.com/LongSoft/UEFITool.git
synced 2024-11-23 00:18:23 +08:00
Fix UEFITool path on Linux
This commit is contained in:
parent
912a1b25b2
commit
f383646033
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user