From 9aeab028a81260b9f580d2e8db597fcd5252c3f6 Mon Sep 17 00:00:00 2001 From: Fincer Date: Fri, 23 Nov 2018 15:07:35 +0200 Subject: [PATCH] winebuild.sh: fix pkgname bug --- debian/wineroot/winebuild.sh | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/debian/wineroot/winebuild.sh b/debian/wineroot/winebuild.sh index d1bcd5f..7e17868 100755 --- a/debian/wineroot/winebuild.sh +++ b/debian/wineroot/winebuild.sh @@ -282,18 +282,6 @@ wine_suggested_pkgs=( 'dosbox' ) -############################ - -# Package name and website - -if [[ ! -v NO_STAGING ]]; then - pkgname="wine-staging-git" -else - pkgname="wine-git" -fi - -pkgurl="https://www.winehq.org" - ######################################################## # Architecture check. We do not support independent @@ -355,6 +343,18 @@ for check in ${args[@]}; do done +############################ + +# Package name and website + +if [[ ! -v NO_STAGING ]]; then + pkgname="wine-staging-git" +else + pkgname="wine-git" +fi + +pkgurl="https://www.winehq.org" + ######################################################## # If the script is interrupted (Ctrl+C/SIGINT), do the following