mirror of
https://github.com/block/goose.git
synced 2026-04-26 10:40:45 +00:00
12 lines
229 B
Bash
Executable file
12 lines
229 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
if [ -z "$1" ]; then
|
|
echo "Usage: $0 <version>"
|
|
echo "Example: $0 1.27.0"
|
|
exit 1
|
|
fi
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
goose run --recipe "$SCRIPT_DIR/recipe.yaml" --params "version=$1"
|