Browse Source

Remove unnecessary argument from call

Alois Mahdal 11 years ago
parent
commit
ad9dade2ec
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      dotfiles/bash/post.bashrc

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

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