diff options
Diffstat (limited to 'tools/depot-build.nix')
-rw-r--r-- | tools/depot-build.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depot-build.nix b/tools/depot-build.nix index 5661d58760b5..62b4c7fc4476 100644 --- a/tools/depot-build.nix +++ b/tools/depot-build.nix @@ -4,5 +4,5 @@ pkgs.writeShellScriptBin "depot-build" '' TARGET=$(git rev-parse --show-prefix | sed 's|/$||') echo "Building //$TARGET" - nix-build -A $(echo $TARGET | sed 's|/|.|') $(${pkgs.git}/bin/git rev-parse --show-toplevel) + nix-build -A $(echo $TARGET | sed 's|/|.|g') $(${pkgs.git}/bin/git rev-parse --show-toplevel) '' |