[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: system: Fix typo in 'PS1' in skeleton '.bashrc'.
From: |
Ludovic Courtès |
Subject: |
01/02: system: Fix typo in 'PS1' in skeleton '.bashrc'. |
Date: |
Thu, 16 Jul 2015 23:12:06 +0000 |
civodul pushed a commit to branch master
in repository guix.
commit 2378df558a6ca9c1db889294cc08b1229720e912
Author: Ludovic Courtès <address@hidden>
Date: Thu Jul 16 10:54:00 2015 +0200
system: Fix typo in 'PS1' in skeleton '.bashrc'.
* gnu/system/shadow.scm (default-skeletons): Move misplaced backslash.
---
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 ae62292..f033109 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='address@hidden \\w\\ [env]$ '
+ export PS1='address@hidden \\w [env]\\$ '
else
export PS1='address@hidden \\w\\$ '
fi