Spaces:
Runtime error
Runtime error
File size: 149 Bytes
b86f76f |
1 2 3 4 5 6 7 8 9 10 |
#!/bin/sh
LINK_EXE_PATH=$(dirname "$(command -v cl)")/link
if [ -x "$LINK_EXE_PATH" ]; then
"$LINK_EXE_PATH" $@
else
link.exe $@
fi
exit $?
|