mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
11 lines
191 B
Bash
Executable File
11 lines
191 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e; set -o pipefail; set -x;
|
|
|
|
echo "Building Rust projects..."
|
|
cd em_proxy
|
|
cargo xcode --output-dir ../
|
|
cd ../
|
|
cd minimuxer
|
|
cargo xcode --output-dir ../
|
|
echo "Done!"
|