-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbump
executable file
·72 lines (58 loc) · 1.3 KB
/
bump
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/usr/bin/env bash
# Sane defaults.
set -euo pipefail
# Find scripts directory.
script="$0"
if test -L "$script"; then
script="$(readlink -f "$0")"
fi
prefix="$(dirname "$script")"
script="$(basename "$script")"
# Print the manual.
help() {
cat <<-EOF >&2
About
Bump add-on version in its manifest and commit.
Usage
$script -h
$script [-x] <path>
Flags
-h Print this manual.
-x Enable debug mode.
EOF
}
# Parse and apply flags.
while getopts ":xh" option; do
case "$option" in
x)
set -x
;;
h)
help
exit
;;
?)
echo "$script: unknown flag '$OPTARG', try -h" >&2
exit
;;
esac
done
# Drop flags by shifting arguments.
shift $((OPTIND - 1))
# Test required arguments.
if test -z "$*"; then
echo "$script: missing required argument, see -h" >&2
exit
fi
# Add-on directory path, e.g. ./Add-on.
target="$1"
# Validate target.
"$prefix/inspect" -V "$target"
# Name of the add-on, e.g. Add-on.
name="$("$prefix/inspect" -n "$target")"
# Version, e.g. 42.
version="$("$prefix/inspect" -v "$target")"
# Change version in ToC files.
find "$target" -type f -name "*.toc" -exec sed -i "s/## Version: .\+/## Version: $((version + 1))/" {} \;
# Commit the change.
git commit -m "Bump $name to v$((version + 1))" "$target/*.toc"