Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
wisp.place
1#!/bin/bash
2# Build Linux and macOS binaries
3
4set -e
5
6mkdir -p binaries
7rm -rf target
8
9# Build macOS binaries natively
10echo "Building macOS binaries..."
11rustup target add aarch64-apple-darwin
12
13echo "Building macOS arm64 binary."
14RUSTFLAGS="-C target-feature=+crt-static" cargo build --release --target aarch64-apple-darwin
15cp target/aarch64-apple-darwin/release/wisp-cli binaries/wisp-cli-macos-arm64