6 lines
166 B
Bash
Executable File
6 lines
166 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
REPO_ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
exec dart "$REPO_ROOT/scripts/version.dart" tag "$@" --project-root "$REPO_ROOT"
|