This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 235 B View raw
1#!/usr/bin/env bash 2 3set -euo pipefail 4 5function go_build() { 6 goarch="$1" 7 goos="$2" 8 9 shift 2 10 11 GOARCH=$goarch GOOS=$goos go build $* 12} 13 14go_build wasm wasip1 -o hypercloud-installer.wasm ./cmd/hypercloud-installer 15 16gzip -f *.wasm