mirror of
https://github.com/MeiK2333/river.git
synced 2025-11-04 14:49:40 +08:00
7 lines
144 B
Bash
Executable File
7 lines
144 B
Bash
Executable File
#!/bin/bash
|
|
if [[ " ${@} " =~ " --target " ]]; then
|
|
$(which rustc) ${@:1}
|
|
else
|
|
$(which rustc) ${@:1} --target "x86_64-unknown-linux-gnu"
|
|
fi
|