console/scripts/fix-symbolic-link.sh
2023-01-31 11:05:36 +01:00

6 lines
No EOL
148 B
Bash
Executable file

if [[ $(uname -s) == CYGWIN* ]];then
del /f ./Cargo.lock
mklink ./Cargo.lock ./configs/cargo.Cargo.lock
else
echo Unix need no fixes
fi