Sha256: 86f9a9951fdeb25404ea6a9412b42ecd1a827f7c5fbb432c4b0bbe13b5afe7f2

Contents?: true

Size: 455 Bytes

Versions: 2

Compression:

Stored size: 455 Bytes

Contents

#!/bin/sh
#
# After a PR merge, Chef Expeditor will bump the PATCH version in the VERSION file.
# It then executes this file to update any other files/components with that new version.
#

set -evx

sed -i -r "s/^(\s*)VERSION = \".+\"/\1VERSION = \"$(cat VERSION)\"/" lib/knife-google/version.rb

# Once Expeditor finishes executing this script, it will commit the changes and push
# the commit as a new tag corresponding to the value in the VERSION file.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
knife-google-3.3.6 .expeditor/update_version.sh
knife-google-3.3.3 .expeditor/update_version.sh