6 lines
121 B
Bash
6 lines
121 B
Bash
#!/bin/bash
|
|
set -u
|
|
project_root="$(cd "$(dirname "$0")" && pwd -P)"
|
|
exec /bin/bash "$project_root/scripts/run_macos.sh"
|
|
|