Parcourir la source

Remove unnecessary argument from call

Alois Mahdal il y a 11 ans
Parent
révision
ad9dade2ec
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      dotfiles/bash/post.bashrc

+ 1
- 1
dotfiles/bash/post.bashrc Voir le fichier

@@ -31,7 +31,7 @@ make_ps1() {
31 31
     ps1w="$lblue\w$normal";
32 32
     ps1G='$(__git_ps1 "(%s)")';
33 33
     ps1g="$green$ps1G$normal";
34
-    ps1D='$(__make_ps1d $?)';
34
+    ps1D='$(__make_ps1d)';
35 35
     ps1d="$red$ps1D$normal";
36 36
     echo "$svrc$ps1u@$ps1h:$ps1w$ps1g$ps1d\$ ";
37 37
 }