summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Duffield <tom@chef.io>2017-08-14 08:04:43 -0500
committerBryan McLellan <btm@loftninjas.org>2017-08-14 11:20:13 -0400
commit7f8d62878ba4b55a4be30dbce44001709f319a90 (patch)
tree54b5b2bb60ecfd5ce9839502024061c1f742bec6
parentf1e0ce7949a91b9ca41177c12e0efa63df5ed433 (diff)
downloadchef-7f8d62878ba4b55a4be30dbce44001709f319a90.tar.gz
Update Gemfile.lock without attempting to install Gems
Signed-off-by: Tom Duffield <tom@chef.io>
-rw-r--r--.bundle/config2
-rwxr-xr-x.expeditor/update_version.sh2
2 files changed, 1 insertions, 3 deletions
diff --git a/.bundle/config b/.bundle/config
deleted file mode 100644
index e520135ebc..0000000000
--- a/.bundle/config
+++ /dev/null
@@ -1,2 +0,0 @@
----
-BUNDLE_FROZEN: "1"
diff --git a/.expeditor/update_version.sh b/.expeditor/update_version.sh
index b2d76bc336..f8d0c8d92b 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 lock --update chef chef-config
# 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.