5 lines
146 B
Bash
Executable File
5 lines
146 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
exec "$SCRIPT_DIR/mac-release" verify-appcast "$@"
|