1
0
Fork 0
mirror of https://github.com/pineappleEA/pineapple-src synced 2024-09-22 17:21:39 +02:00
pineapple-src/externals/ffmpeg/compat/windows/mslink
2021-02-09 04:25:58 +01:00

9 lines
149 B
Bash
Executable file

#!/bin/sh
LINK_EXE_PATH=$(dirname "$(command -v cl)")/link
if [ -x "$LINK_EXE_PATH" ]; then
"$LINK_EXE_PATH" $@
else
link.exe $@
fi
exit $?