6 lines
288 B
Bash
6 lines
288 B
Bash
#!/bin/sh
|
|
UE_TRUE_SCRIPT_NAME=$(echo \"$0\" | xargs readlink -f)
|
|
UE_PROJECT_ROOT=$(dirname "$UE_TRUE_SCRIPT_NAME")
|
|
chmod +x "$UE_PROJECT_ROOT/Luckyrobots/Binaries/Linux/Luckyrobots-Linux-Shipping"
|
|
"$UE_PROJECT_ROOT/Luckyrobots/Binaries/Linux/Luckyrobots-Linux-Shipping" Luckyrobots "$@"
|