-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sh
37 lines (34 loc) · 941 Bytes
/
build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
# Check the number of arguments
if [ $# -eq 0 ]; then
echo "Error: No arguments provided. Please use -x, -r, or --all."
exit 1
fi
# Process arguments
while [[ $# -gt 0 ]]; do
case "$1" in
-x)
echo "Compiling and copying the 'exec' executable..."
cargo build --bin exec
cp target/debug/exec .
;;
-r)
echo "Compiling and copying the 'repl' executable..."
cargo build --bin repl
cp target/debug/repl .
;;
--all)
echo "Compiling and copying all executables..."
cargo build --bin exec
cp target/debug/exec .
cargo build --bin repl
cp target/debug/repl .
;;
*)
echo "Error: Unknown argument \$1. Please use -x, -r, or --all."
exit 1
;;
esac
shift
done
echo "Build completed."