diff options
author | Tim Smith <tsmith@chef.io> | 2018-08-09 18:44:54 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-08-09 18:44:54 -0700 |
commit | 615dc463039f5235055eb5b49bb8de68a7948d6f (patch) | |
tree | 7785c3b6ae6eeba0b0b67d91434354bd3b08be43 /.expeditor/update_dep.sh | |
parent | c64b3be5c59ce006b90e36efacf5faaf65615afc (diff) | |
download | chef-615dc463039f5235055eb5b49bb8de68a7948d6f.tar.gz |
Fix bundle update syntax in update_dep.sh
Don't confuse gem and bundler flags.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.expeditor/update_dep.sh')
-rw-r--r-- | .expeditor/update_dep.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.expeditor/update_dep.sh b/.expeditor/update_dep.sh index 13cc63ccc0..a27df411d5 100644 --- a/.expeditor/update_dep.sh +++ b/.expeditor/update_dep.sh @@ -5,7 +5,7 @@ set -evx branch="expeditor/${GEM_NAME}_${VERSION}" git checkout -b "$branch" -bundle update $GEM_NAME -v $VERSION +bundle update $GEM_NAME git add . git commit --message "Bump $GEM_NAME to $VERSION" --message "This pull request was triggered automatically via Expeditor when $GEM_NAME $VERSION was promoted to Rubygems." |