summaryrefslogtreecommitdiffstats
path: root/git-radar
diff options
context:
space:
mode:
authorMichael Allen <michael@michaelallen.io>2015-08-29 15:36:15 +0100
committerMichael Allen <michael@michaelallen.io>2015-08-29 15:36:15 +0100
commit0629f020498d97f71e8a46828803e4ff54aa6924 (patch)
treefec1adcd7aacb6f55daaaadb8a9c9f139e5a2933 /git-radar
parentda76c7dcbc9b52e881c864c7014dbf2a0aaf43b5 (diff)
parentc03a462177bc2ec469a0cdb06234d08f35054966 (diff)
downloadgit-sonar-0629f020498d97f71e8a46828803e4ff54aa6924.tar.gz
git-sonar-0629f020498d97f71e8a46828803e4ff54aa6924.zip
Merge pull request #29 from reinaldo13/issue-17
issue-17: Add arguments to make the prompt shorter
Diffstat (limited to 'git-radar')
-rwxr-xr-xgit-radar5
1 files changed, 3 insertions, 2 deletions
diff --git a/git-radar b/git-radar
index a5cd3c1..67b8460 100755
--- a/git-radar
+++ b/git-radar
@@ -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