diff --git a/init/docker/hooks/push b/init/docker/hooks/push index b324e9e9..e030ad4d 100755 --- a/init/docker/hooks/push +++ b/init/docker/hooks/push @@ -6,7 +6,7 @@ set -e -o pipefail VERSION=$(git tag -l --merged | tail -n1 | tr -d v) # 1.2.3 SHORTVER=$(echo $VERSION | cut -d. -f1,2) # 1.2 -if [ "$BUILDS" != "" ] && [ "$VERSION" != "" ]; then +if [ "$BUILDS" != "" ]; then TAGS=$DOCKER_TAG fi diff --git a/scripts/install.sh b/scripts/install.sh index 0015af25..5b260028 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -19,12 +19,9 @@ if [ "$ARCH" = "x86_64" ] || [ "$ARCH" = "amd64" ]; then elif [[ $ARCH == *386* ]] || [[ $ARCH == *686* ]]; then ARCH="i386" elif [[ $ARCH == *arm64* ]] || [[ $ARCH == *armv8* ]]; then - echo "Unsupported Architecture: ${ARCH}, sorry!" - exit 1 + ARCH="arm64" elif [[ $ARCH == *armv6* ]] || [[ $ARCH == *armv7* ]]; then ARCH="armhf" -elif [[ $ARCH == *arm* ]]; then - ARCH="arm" else echo "Unknown Architecture. Submit a pull request to fix this, please." echo ==> $ARCH