mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-26 07:18:25 -05:00
10 lines
149 B
Plaintext
10 lines
149 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
LINK_EXE_PATH=$(dirname "$(command -v cl)")/link
|
||
|
if [ -x "$LINK_EXE_PATH" ]; then
|
||
|
"$LINK_EXE_PATH" $@
|
||
|
else
|
||
|
link.exe $@
|
||
|
fi
|
||
|
exit $?
|