diff options
author | Tim Smith <tsmith@chef.io> | 2018-08-22 14:39:50 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-08-22 14:39:50 -0700 |
commit | 51707d812274b1b5143445d3ed9e2a7211d333c7 (patch) | |
tree | 33c257698bcd275988894310c21aec0e537f98b0 /.expeditor | |
parent | e0ffe5f134c2037af0a1b95005e8ce00057b5a71 (diff) | |
download | chef-51707d812274b1b5143445d3ed9e2a7211d333c7.tar.gz |
Run bundler in parallel to speed things up a bit
This makes it a tiny bit faster. Why not
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.expeditor')
-rwxr-xr-x | .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 b2d76bc336..17ad5a16a7 100755 --- a/.expeditor/update_version.sh +++ b/.expeditor/update_version.sh @@ -10,7 +10,7 @@ sed -i -r "s/^(\s*)VERSION = \".+\"/\1VERSION = \"$(cat VERSION)\"/" chef-config sed -i -r "s/VersionString\.new\(\".+\"\)/VersionString.new(\"$(cat VERSION)\")/" lib/chef/version.rb # Update the version inside Gemfile.lock -bundle update chef chef-config +bundle update chef chef-config --jobs=7 # 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. |