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