From 2378df558a6ca9c1db889294cc08b1229720e912 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Thu, 16 Jul 2015 10:54:00 +0200 Subject: [PATCH] system: Fix typo in 'PS1' in skeleton '.bashrc'. * gnu/system/shadow.scm (default-skeletons): Move misplaced backslash. --- gnu/system/shadow.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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