diff options
author | Claudio Bandera <claudio.bandera@kit.edu> | 2015-09-17 18:40:24 +0200 |
---|---|---|
committer | Claudio Bandera <claudio.bandera@kit.edu> | 2015-09-17 18:40:24 +0200 |
commit | 92c2e869763dcc25c840c2e6cfcd9863abf201dd (patch) | |
tree | e032548195fccf98708daafa8f3e93c0781ede4e /git-radar | |
parent | 2dbf0c220fc971c9493392a70c71954001fee7fd (diff) | |
parent | 1f6a8f84946a0cb6936916f47b5a3870fa12a5a6 (diff) | |
download | git-sonar-92c2e869763dcc25c840c2e6cfcd9863abf201dd.tar.gz git-sonar-92c2e869763dcc25c840c2e6cfcd9863abf201dd.zip |
Merge remote-tracking branch 'upstream/master' into hotfix/unittests
Diffstat (limited to 'git-radar')
-rwxr-xr-x | git-radar | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -11,6 +11,7 @@ else fi dot="$(cd "$(dirname "$([ -L "$0" ] && $READLINK_CMD -f "$0" || echo "$0")")"; pwd)" +args=$@ if [[ -z $@ ]]; then _git="\033[1;30mgit:(\033[0m" @@ -92,9 +93,9 @@ while [[ $# > 0 ]];do nohup $dot/fetch.sh >/dev/null 2>&1 & fi if [[ "$command" == "--zsh" ]]; then - $dot/prompt.zsh + $dot/prompt.zsh $args fi if [[ "$command" == "--bash" || "$command" == "--fish" ]]; then - $dot/prompt.bash + $dot/prompt.bash $args fi done |