mirror of
https://github.com/hexagonal-sun/moss-kernel.git
synced 2025-12-30 18:07:58 -05:00
9 lines
183 B
Bash
Executable File
9 lines
183 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
pushd "usertest" &>/dev/null || exit 1
|
|
cargo build
|
|
popd &>/dev/null || exit 1
|
|
|
|
cp ./target/aarch64-unknown-linux-musl/debug/usertest build/bin/
|