network/pCloudDrive: Fix case statement in SlackBuild.

Signed-off-by: Dave Woodfall <dave@slackbuilds.org>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Dave Woodfall 2022-03-02 06:12:26 +00:00 committed by Willy Sudiarto Raharjo
parent 1f78a64344
commit 31385f0c32
No known key found for this signature in database
GPG key ID: 3F617144D7238786

View file

@ -28,7 +28,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=pCloudDrive
VERSION=${VERSION:-1.8.2}
BUILD=${BUILD:-1}
BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@ -37,8 +37,8 @@ if [ -z "$ARCH" ]; then
fi
case "$ARCH" in
i?86) break ;;
x86_64) break ;;
# do nothing and pass through
i?86|x86_64) ;;
*)
echo "$ARCH is not supported for $PRGNAM-$VERSION"
exit 1