diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2017-05-24T09·21+0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2017-05-24T09·23+0200 |
commit | 9711524188494ff5bcbba8c6945add89fbb29713 (patch) | |
tree | 937786033b547a792a2e2e0744335116016fdcde /src/nix-build | |
parent | 01200d07d2e6e781c7c7935b1d13f8b3b2d0271a (diff) |
Fix #1380
It lacked a backslash. Use a raw string and single quotes around PS1 to simplify this.
Diffstat (limited to 'src/nix-build')
-rwxr-xr-x | src/nix-build/nix-build.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix-build/nix-build.cc b/src/nix-build/nix-build.cc index b7cf36d16071..d5f23a37fe65 100755 --- a/src/nix-build/nix-build.cc +++ b/src/nix-build/nix-build.cc @@ -438,7 +438,7 @@ int main(int argc, char ** argv) "[ -e $stdenv/setup ] && source $stdenv/setup; " "%3%" "set +e; " - "[ -n \"$PS1\" ] && PS1=\"\\n\\[\\033[1;32m\\][nix-shell:\\w]\\$\\[\\033[0m\\] \"; " + R"s([ -n "$PS1" ] && PS1='\n\[\033[1;32m\][nix-shell:\w]\$\[\033[0m\] '; )s" "if [ \"$(type -t runHook)\" = function ]; then runHook shellHook; fi; " "unset NIX_ENFORCE_PURITY; " "unset NIX_INDENT_MAKE; " |