6 lines
185 B
Tcsh
6 lines
185 B
Tcsh
# Copy cargo config from skel if it is not exist
|
|
if ( ! -e "$HOME/.cargo/config.toml" ) then
|
|
mkdir -p $HOME/.cargo
|
|
cp -f /etc/skel/.cargo/config.toml $HOME/.cargo
|
|
endif
|