diff options
author | Tom Duffield <tom@chef.io> | 2017-06-16 12:35:18 -0500 |
---|---|---|
committer | Tom Duffield <tom@chef.io> | 2017-06-16 12:35:18 -0500 |
commit | ccf6746f6f550ec20361c2d5cf4318312f7c28c6 (patch) | |
tree | 1e543d991f59edd98abe157c0c85d87e908fafe1 /.expeditor/update_version.sh | |
parent | c35f70b585e46a02a8efbb68c4c4e5ef6de7f024 (diff) | |
download | chef-ccf6746f6f550ec20361c2d5cf4318312f7c28c6.tar.gz |
Don't error out if .bundle/config doesn't exist (as it might)
Signed-off-by: Tom Duffield <tom@chef.io>
Diffstat (limited to '.expeditor/update_version.sh')
-rw-r--r-- | .expeditor/update_version.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.expeditor/update_version.sh b/.expeditor/update_version.sh index a78c9a832c..0dd9d0d65f 100644 --- a/.expeditor/update_version.sh +++ b/.expeditor/update_version.sh @@ -27,7 +27,7 @@ bundle exec rake update_dockerfile || true # Our `rake` command can sometimes modify this file, but we don't care about the # changes it makes. Reset it to HEAD. -git checkout .bundle/config +git checkout .bundle/config || true # Once Expeditor finshes executing this script, it will commit the changes and push # the commit as a new tag corresponding to the value in the VERSION file. |