From b9d11778a58031afd373a43517aaec43813d68d6 Mon Sep 17 00:00:00 2001 From: John Plate Date: Mon, 2 Aug 2021 13:17:20 +0100 Subject: [PATCH] Clarify gofuse flag 'bazelout' in DEVDOC (#894) Fixes b/194912501 --- DEVDOC.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/DEVDOC.md b/DEVDOC.md index 1c9a12adc..d34714757 100644 --- a/DEVDOC.md +++ b/DEVDOC.md @@ -49,8 +49,11 @@ mkdir /agi-gofuse # Run gofuse with the previous directory as a target bazel run //cmd/gofuse -- -dir -# If you build with bazel build -c dbg pkg, the is `k8-dbg` on Linux. -bazel run //cmd/gofuse -- -dir -bazelout +# If the previous command fails to correctly guess the sub-directory under `bazel-out`, +# please pass it with the command below. For example if you build on Windows, the +# standard is `x64_windows-fastbuild`. If you build on Linux with +# `bazel build -c dbg pkg`, the is `k8-dbg`. +bazel run //cmd/gofuse -- -dir -bazelout # Build the package again to output the original compile-time generated files again. bazel build pkg