We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0cd3edb + 09b370a commit 35c0ef4Copy full SHA for 35c0ef4
tools/release.sh
@@ -26,16 +26,17 @@ spinner() {
26
prompt_version() {
27
bold "Input new version (e.g., 1.2.3):"
28
read -r VERSION_INPUT
29
- VERSION="v${VERSION_INPUT//v/}"
+ RAW_VERSION="${VERSION_INPUT//v/}"
30
+ VERSION="v${RAW_VERSION}"
31
}
32
33
set_package_name() {
34
PACKAGE_NAME="alfred-gcp-workflow-${VERSION}.alfredworkflow"
35
36
37
update_info_plist() {
- bold "Updating version in info.plist to ${VERSION}..."
38
- /usr/libexec/PlistBuddy -c "Set :version ${VERSION}" info.plist
+ bold "Updating version in info.plist to ${RAW_VERSION}..."
39
+ /usr/libexec/PlistBuddy -c "Set :version ${RAW_VERSION}" info.plist
40
41
42
commit_version_update() {
0 commit comments