Explorar el Código

Remove unnecessary argument from call

Alois Mahdal hace 11 años
padre
commit
ad9dade2ec
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      dotfiles/bash/post.bashrc

+ 1
- 1
dotfiles/bash/post.bashrc Ver fichero

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