mirror of
https://github.com/rizinorg/cutter.git
synced 2024-12-21 12:26:11 +00:00
9 lines
210 B
Bash
9 lines
210 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo "Cutter Launch Script for macOS 🥞"
|
||
|
|
||
|
EXECDIR=$(dirname "$0")
|
||
|
export DYLD_LIBRARY_PATH="$EXECDIR/../Frameworks"
|
||
|
export DYLD_FRAMEWORK_PATH="$EXECDIR/../Frameworks"
|
||
|
"$EXECDIR/Cutter.bin" "$@"
|