Skip to content

Commit

Permalink
Worlk
Browse files Browse the repository at this point in the history
  • Loading branch information
coxifred committed Oct 26, 2024
1 parent 5491bb6 commit 18e6b19
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions buildDocker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ read VERSION
test -z "${VERSION}" && VERSION=2.0
echo -e "Arch ($(uname -m | cut -c1-3)): \c"
read ARCH
test -z "${ARCH}" && ARCH=$(uname -m | cut -c1-3)
test -z "${ARCH}" && ARCH="-$(uname -m | cut -c1-3)"
test "${ARCH}" = "-x86" && ARCH=""

VERSION=$VERSION-${ARCH}
VERSION=$VERSION${ARCH}
echo "Version to generate : $VERSION press enter to continue " ; read SUITE
DOCKER_FILE=""
if [ "$(uname -m | cut -c1-3)" = "arm" ]
Expand Down

0 comments on commit 18e6b19

Please sign in to comment.