Fix indentation in termux_step_setup_toolchain

This commit is contained in:
Fredrik Fornwall 2020-05-05 19:29:04 +02:00
parent d6db0bb10f
commit 540dd0689b
1 changed files with 2 additions and 2 deletions

View File

@ -46,9 +46,9 @@ termux_step_setup_toolchain() {
export GOARCH=386
export GO386=sse2
elif [ "$TERMUX_ARCH" = "aarch64" ]; then
export GOARCH=arm64
export GOARCH=arm64
elif [ "$TERMUX_ARCH" = "x86_64" ]; then
export GOARCH=amd64
export GOARCH=amd64
else
termux_error_exit "Invalid arch '$TERMUX_ARCH' - support arches are 'arm', 'i686', 'aarch64', 'x86_64'"
fi