diff options
Diffstat (limited to 'development/ShellCheck-bin/ShellCheck-bin.SlackBuild')
-rw-r--r-- | development/ShellCheck-bin/ShellCheck-bin.SlackBuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/development/ShellCheck-bin/ShellCheck-bin.SlackBuild b/development/ShellCheck-bin/ShellCheck-bin.SlackBuild index c9b0f122fe..943d423383 100644 --- a/development/ShellCheck-bin/ShellCheck-bin.SlackBuild +++ b/development/ShellCheck-bin/ShellCheck-bin.SlackBuild @@ -8,7 +8,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=ShellCheck-bin BINNAM=shellcheck -VERSION=${VERSION:-0.9.0} +VERSION=${VERSION:-0.10.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -17,7 +17,7 @@ if [ -z "$ARCH" ]; then ARCH=$( uname -m ) fi -if [ "$ARCH" != "x86_64" ]; then +if [ "$ARCH" != "x86_64" ] && [ "$ARCH" != "aarch64" ] ; then echo "$ARCH is not supported." exit 1 fi |