summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2019-04-12 11:43:57 -0700
committerTim Smith <tsmith@chef.io>2019-04-23 16:53:22 -0700
commit5950c6afedaa13fe925ee2b5185b86c2672e4672 (patch)
tree39d6afa74add1250a73a0174b01589c2e3e8052f /docs
parent28ff0924a47302cd0483f48fb1b313759807b19f (diff)
downloadchef-5950c6afedaa13fe925ee2b5185b86c2672e4672.tar.gz
Fix dep updating links
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'docs')
-rw-r--r--docs/dev/how_to/updating_dependencies.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/dev/how_to/updating_dependencies.md b/docs/dev/how_to/updating_dependencies.md
index 035f43bbc0..86b54a5edc 100644
--- a/docs/dev/how_to/updating_dependencies.md
+++ b/docs/dev/how_to/updating_dependencies.md
@@ -2,13 +2,13 @@
If you want to change our constraints (change which packages and versions we accept in the chef), there are several places to do so:
-* [Gemfile](Gemfile) and [Gemfile.lock](Gemfile.lock): All gem version constraints (update with `bundle update`)
-* [omnibus_overrides.rb](omnibus_overrides_rb): Pinned versions of omnibus packages.
-* [omnibus/Gemfile](omnibus/Gemfile) and [omnibus/Gemfile.lock](omnibus/Gemfile.lock): Gems for the omnibus build system itself.
+* [Gemfile](../../../Gemfile) and [Gemfile.lock](../../../Gemfile.lock): All gem version constraints (update with `bundle update`)
+* [omnibus_overrides.rb](../../../omnibus_overrides_rb): Pinned versions of omnibus packages.
+* [omnibus/Gemfile](../../../omnibus/Gemfile) and [omnibus/Gemfile.lock](../../../omnibus/Gemfile.lock): Gems for the omnibus build system itself.
In addition, there are several places where versions are pinned for CI tasks:
-* [kitchen-tests/Gemfile](kitchen-tests/Gemfile) and [kitchen-tests/Gemfile.lock](kitchen-tests/Gemfile.lock): Gems for test-kitchen tests (travis)
+* [kitchen-tests/Gemfile](../../../kitchen-tests/Gemfile) and [kitchen-tests/Gemfile.lock](../../../kitchen-tests/Gemfile.lock): Gems for test-kitchen tests (travis)
In order to update everything, run `rake dependencies`. Note that the [Gemfile.lock](Gemfile.lock) pins windows platforms, and to fully regenerate the lockfile, you must use the following commands, or run `rake dependencies:update_gemfile_lock`:
@@ -16,4 +16,4 @@ In order to update everything, run `rake dependencies`. Note that the [Gemfile.
bundle lock --update --add-platform ruby
bundle lock --update --add-platform x64-mingw32
bundle lock --update --add-platform x86-mingw32
-``` \ No newline at end of file
+```