Skip to content

Commit f3a64ed

Browse files
committed
fix(wine): fix previous
1 parent 48f4ec0 commit f3a64ed

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/wine/find-deps.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ STATUS=/tmp/dpkg.status.empty
2323

2424
case "${BUILD}" in
2525
stable|devel|staging)
26-
apt-get -s install -y -o Dir::State::status="$STATUS" -o APT::Install-Recommends=1 -o APT::Architectures=amd64;i386 "winehq-${BUILD}" \
26+
apt-get -s install -y -o Dir::State::status="$STATUS" -o APT::Install-Recommends=1 -o APT::Architectures=amd64 -o APT::Architectures=i386 \
27+
"winehq-${BUILD}" \
2728
| _print_inst
2829
;;
2930

@@ -44,7 +45,7 @@ case "${BUILD}" in
4445
exit 2
4546
fi
4647

47-
apt-get -s install -y -o Dir::State::status="$STATUS" -o APT::Install-Recommends=1 -o APT::Architectures=amd64;i386 \
48+
apt-get -s install -y -o Dir::State::status="$STATUS" -o APT::Install-Recommends=1 -o APT::Architectures=amd64 -o APT::Architectures=i386 \
4849
"wine-${WINE_BRANCH}-i386=${WINE_BUILD}" \
4950
"wine-${WINE_BRANCH}-amd64=${WINE_BUILD}" \
5051
"wine-${WINE_BRANCH}=${WINE_BUILD}" \

0 commit comments

Comments
 (0)