Sfoglia il codice sorgente

Remove unnecessary argument from call

Alois Mahdal 11 anni fa
parent
commit
ad9dade2ec
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      dotfiles/bash/post.bashrc

+ 1
- 1
dotfiles/bash/post.bashrc Vedi File

@@ -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
 }