rust/cargo-config.sh
2025-05-18 20:25:44 +00:00

6 lines
184 B
Bash

# 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