Skip to content
Snippets Groups Projects
Commit ad309933 authored by Natanael Copa's avatar Natanael Copa
Browse files

community/go: don't die in global scope

we have tools that parse APKBUILDs in aports so we should never die from
global scope.
parent 6a2548eb
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ mips) export GOARCH="mips" GOMIPS=softfloat ;;
mips64) export GOARCH="mips64" GOMIPS64=softfloat ;;
mips64el) export GOARCH="mips64le" GOMIPS64=softfloat ;;
mipsel) export GOARCH="mipsle" GOMIPS=softfloat ;;
*) die "Unsupported arch" ;;
*) export GOARCH="unsupported";;
esac
builddir="$srcdir"/go
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment