You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
149B

  1. #!/bin/sh
  2. LINK_EXE_PATH=$(dirname "$(command -v cl)")/link
  3. if [ -x "$LINK_EXE_PATH" ]; then
  4. "$LINK_EXE_PATH" $@
  5. else
  6. link.exe $@
  7. fi
  8. exit $?