From 406cdf787ebbd6c937ec85421a7f8dd9a6bb883b Mon Sep 17 00:00:00 2001 From: Varun Gandhi Date: Wed, 13 Jul 2022 10:03:16 +0800 Subject: [PATCH] docs: Fix paths in debugging notes. --- scip-ruby.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scip-ruby.md b/scip-ruby.md index 7c43866f9b..ca9b1d24aa 100644 --- a/scip-ruby.md +++ b/scip-ruby.md @@ -44,7 +44,7 @@ Typically, I'll copy over the minimized code to the root and run: ``` -./bazel build //main:scip-ruby --config=dbg && ./bazel-out/darwin-dbg/bin/main/scip-ruby tmp.rb -p cfg-text --index-file index.scip +./bazel build //main:scip-ruby --config=dbg && ./bazel-out/darwin-dbg/bin/main/scip-ruby tmp.rb -p cfg-text --index-file /dev/null ``` Alternately, it may be useful to create a `tmp.rb` @@ -55,5 +55,5 @@ file under the `test/scip/snapshots/` directory # Check ./bazel test //test/scip:tmp --config=dbg # View output -./bazel test //test/scip:update_tmp --config=dbg && cat test/scip/snapshots/tmp.snapshot.rb +./bazel test //test/scip:update_tmp --config=dbg && cat test/scip/testdata/tmp.snapshot.rb ```