Browse Source

winebuild.sh: fix pkgname bug

master
Fincer 5 years ago
parent
commit
9aeab028a8
1 changed files with 12 additions and 12 deletions
  1. +12
    -12
      debian/wineroot/winebuild.sh

+ 12
- 12
debian/wineroot/winebuild.sh View File

@ -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


Loading…
Cancel
Save