Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
hypercloud build.sh
235 B · 16 lines
Shell
at main
12345678910111213141516#!/usr/bin/env bash
set -euo pipefail
function go_build() { goarch="$1" goos="$2"
shift 2
GOARCH=$goarch GOOS=$goos go build $*}
go_build wasm wasip1 -o hypercloud-installer.wasm ./cmd/hypercloud-installer
gzip -f *.wasm