diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-05-05 22:16:36 -0700 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-05-05 22:16:36 -0700 |
commit | 78ddd7a862a24c5a0ab84c16320c8342b9ff5ba5 (patch) | |
tree | 6dacca9c8576d9b1b34ca793ceb3b8b0083c94e3 | |
parent | e515ec1e30f57c4ab166061fe709b7decb8d4f66 (diff) | |
download | chef-78ddd7a862a24c5a0ab84c16320c8342b9ff5ba5.tar.gz |
Update the commands in the docs toobump_deps
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | docs/dev/how_to/updating_dependencies.md | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/docs/dev/how_to/updating_dependencies.md b/docs/dev/how_to/updating_dependencies.md index 995bf4aabf..82bfc346bb 100644 --- a/docs/dev/how_to/updating_dependencies.md +++ b/docs/dev/how_to/updating_dependencies.md @@ -9,7 +9,5 @@ If you want to change our constraints (change which packages and versions we acc In order to update everything, run `rake dependencies`. Note that the [Gemfile.lock](Gemfile.lock) pins Windows platform gems, and to fully regenerate the lockfile, you must use the following commands, or run `rake dependencies:update_gemfile_lock`: ```bash -bundle lock --update --add-platform ruby -bundle lock --update --add-platform x64-mingw32 -bundle lock --update --add-platform x86-mingw32 +bundle lock --update --add-platform ruby x64-mingw32 x86-mingw32 ``` |