6 lines
161 B
Bash
Executable File
6 lines
161 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Run the bump script to increment the patch version in pubspec.yaml and stage it
|
|
./scripts/bump_patch_version.sh || true
|