13 lines
299 B
Bash
Executable File
13 lines
299 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
# Thin wrapper that invokes the Go release tool.
|
|
# Usage: ./scripts/release.sh [flags]
|
|
#
|
|
# Flags are passed directly to the Go program.
|
|
# Run ./scripts/release.sh --help for details.
|
|
|
|
cd "$(dirname "${BASH_SOURCE[0]}")/.."
|
|
exec go run ./scripts/releaser "$@"
|