13 lines
207 B
Bash
Executable File
13 lines
207 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
if [ "$#" -ne 1 ]; then
|
|
echo "usage: scripts/release/smoke-binary.sh <binary-path>" >&2
|
|
exit 2
|
|
fi
|
|
|
|
binary_path="$1"
|
|
|
|
"$binary_path" --help
|
|
"$binary_path" --version
|