blob: ad74552a9567e0bce2c935c84ac98ed93e602ff8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
if [ "$1" = "linux" ]; then
rustup target install x86_64-unknown-linux-musl || exit 1
cargo build --target-dir target/ --target x86_64-unknown-linux-musl --release || exit 1
mv target/x86_64-unknown-linux-musl/release/dotup "dotup_x86_64-unknown-linux-musl"
fi
if [ "$1" = "macos" ]; then
rustup target install x86_64-apple-darwin || exit 1
cargo build --target-dir target/ --target x86_64-apple-darwin --release || exit 1
mv target/x86_64-apple-darwin/release/dotup "dotup_x86_64-apple-darwin"
fi
|