Add a check for wine64 to the Windows packaging
This commit is contained in:
committed by
Matthias Mailänder
parent
311b6fcd83
commit
32bc561878
@@ -7,6 +7,7 @@ command -v curl >/dev/null 2>&1 || { echo >&2 "Windows packaging requires curl."
|
||||
command -v makensis >/dev/null 2>&1 || { echo >&2 "Windows packaging requires makensis."; exit 1; }
|
||||
command -v convert >/dev/null 2>&1 || { echo >&2 "Windows packaging requires ImageMagick."; exit 1; }
|
||||
command -v python3 >/dev/null 2>&1 || { echo >&2 "Windows packaging requires python 3."; exit 1; }
|
||||
command -v wine64 >/dev/null 2>&1 || { echo >&2 "Windows packaging requires wine64."; exit 1; }
|
||||
|
||||
if [ $# -ne "2" ]; then
|
||||
echo "Usage: $(basename "$0") tag outputdir"
|
||||
|
||||
Reference in New Issue
Block a user