6 lines
186 B
Bash
6 lines
186 B
Bash
#!/bin/bash
|
|
# Install this file in the project root, then double-click it on macOS.
|
|
set -euo pipefail
|
|
root=$(cd "$(dirname "$0")" && pwd)
|
|
exec /bin/bash "$root/build-tools/Build-Mac.sh"
|