diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-07-16 10:54:00 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-07-17 00:20:08 +0200 |
commit | 2378df558a6ca9c1db889294cc08b1229720e912 (patch) | |
tree | 43ea2537dc0da13e096c3ec99ae12433d04e7edc /gnu/system/shadow.scm | |
parent | 7aab13f19d3aee27878cd67b41f5908b8e28767d (diff) | |
download | guix-2378df558a6ca9c1db889294cc08b1229720e912.tar guix-2378df558a6ca9c1db889294cc08b1229720e912.tar.gz |
system: Fix typo in 'PS1' in skeleton '.bashrc'.
* gnu/system/shadow.scm (default-skeletons): Move misplaced backslash.
Diffstat (limited to 'gnu/system/shadow.scm')
-rw-r--r-- | gnu/system/shadow.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/shadow.scm b/gnu/system/shadow.scm index ae6229229b..f033109614 100644 --- a/gnu/system/shadow.scm +++ b/gnu/system/shadow.scm @@ -156,7 +156,7 @@ fi # Adjust the prompt depending on whether we're in 'guix environment'. if [ -n \"$GUIX_ENVIRONMENT\" ] then - export PS1='\\u@\\h \\w\\ [env]$ ' + export PS1='\\u@\\h \\w [env]\\$ ' else export PS1='\\u@\\h \\w\\$ ' fi |