mirror of
https://github.com/h3pdesign/Neon-Vision-Editor
synced 2026-04-21 13:27:16 +00:00
10 lines
241 B
Bash
Executable file
10 lines
241 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
repo_root="$(git rev-parse --show-toplevel)"
|
|
cd "$repo_root"
|
|
|
|
if [[ -x "scripts/bump_build_number.sh" ]]; then
|
|
scripts/bump_build_number.sh
|
|
git add "Neon Vision Editor.xcodeproj/project.pbxproj"
|
|
fi
|