diff options
author | Tom Duffield <tom@chef.io> | 2016-11-09 14:06:39 -0600 |
---|---|---|
committer | Tom Duffield <tom@chef.io> | 2016-11-09 14:06:39 -0600 |
commit | 45751889f6daa65004287d29825ef11bedbcc0d4 (patch) | |
tree | d40d8a54c5039ae612bc5394504789bc7f2c51c0 /ci | |
parent | fc0ead5b9ec6aa28ae263f8f9c6bc4c7310c9471 (diff) | |
download | chef-45751889f6daa65004287d29825ef11bedbcc0d4.tar.gz |
Add UTF-8 environment var to version bumper
The Github Changelog Generator threw an error about invalid
encoding. This never happened locally, and indications are that its
because of this environment variable.
Signed-off-by: Tom Duffield <tom@chef.io>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/version_bump.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ci/version_bump.sh b/ci/version_bump.sh index 147442666a..5526f7b725 100755 --- a/ci/version_bump.sh +++ b/ci/version_bump.sh @@ -2,6 +2,8 @@ set -evx +export LANG=en_US.UTF-8 + . ci/bundle_install.sh bundle exec rake version:bump |