From 21783cff1649f236cb31f27f788e3934802c42c9 Mon Sep 17 00:00:00 2001 From: Emil Nikolov Date: Tue, 12 Sep 2023 17:15:36 +0200 Subject: [PATCH] docs: make the nix develop --command example unambiguous (#8952) --- src/nix/develop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nix/develop.md b/src/nix/develop.md index 1b5a8aeba..c49b39669 100644 --- a/src/nix/develop.md +++ b/src/nix/develop.md @@ -69,7 +69,7 @@ R""( * Run a series of script commands: ```console - # nix develop --command bash --command "mkdir build && cmake .. && make" + # nix develop --command bash -c "mkdir build && cmake .. && make" ``` # Description