소스 검색

Switched to an en locale

Brendan Abolivier 6 년 전
부모
커밋
9b81dfd9b3
로그인 계정: Brendan Abolivier <contact@brendanabolivier.com> GPG 키 ID: 8EF1500759F70623
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      .bashrc

+ 1
- 1
.bashrc 파일 보기

@@ -85,7 +85,7 @@ fi
85 85
 
86 86
 # Prompt
87 87
 function parse_git_dirty {
88
- [[ $(git status 2> /dev/null | tail -n1) != "rien à valider, la copie de travail est propre" ]] && echo "*"
88
+ [[ $(git status 2> /dev/null | tail -n1) != "nothing to commit, working directory clean" ]] && echo "*"
89 89
 }
90 90
 function parse_git_branch {
91 91
  git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/\(\1$(parse_git_dirty)\)/"