rust/cargo-config.sh

6 lines
184 B
Bash
Raw Normal View History

2023-07-30 20:42:55 +08:00
# Copy cargo config from skel if it is not exist
if [ ! -f "$HOME/.cargo/config.toml" ] ; then
mkdir -p $HOME/.cargo
cp -f /etc/skel/.cargo/config.toml $HOME/.cargo
fi