mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
10 lines
145 B
Bash
Executable File
10 lines
145 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 $@
|
|
fi
|
|
exit $?
|