Pranjal12345's picture
Upload 8017 files
b86f76f
raw
history blame contribute delete
149 Bytes
#!/bin/sh
LINK_EXE_PATH=$(dirname "$(command -v cl)")/link
if [ -x "$LINK_EXE_PATH" ]; then
"$LINK_EXE_PATH" $@
else
link.exe $@
fi
exit $?