mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
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:
parent
1f78a64344
commit
31385f0c32
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue