console/scripts/fix-symbolic-link.sh

7 lines
144 B
Bash
Raw Permalink Normal View History

2023-03-07 09:34:59 +00:00
if [[ $(uname -s) == CYGWIN* ]]; then
del /f ./Cargo.lock
mklink ./Cargo.lock ./configs/cargo.Cargo.lock
else
echo Unix needs no fixes
2023-03-07 09:34:59 +00:00
fi