From 32bc561878479b15e6476ecbf852a2ffe40f0653 Mon Sep 17 00:00:00 2001 From: abcdefg30 Date: Thu, 28 Oct 2021 12:27:22 +0200 Subject: [PATCH] Add a check for wine64 to the Windows packaging --- packaging/windows/buildpackage.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/packaging/windows/buildpackage.sh b/packaging/windows/buildpackage.sh index d743773592..757487fe53 100755 --- a/packaging/windows/buildpackage.sh +++ b/packaging/windows/buildpackage.sh @@ -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"