diff options
author | Michael Allen <michael@michaelallen.io> | 2015-08-19 10:50:23 +0100 |
---|---|---|
committer | Michael Allen <michael@michaelallen.io> | 2015-08-19 10:50:23 +0100 |
commit | 61b5a9c87d77380c57f5349bc43cefa0f4415c4f (patch) | |
tree | dea5014649815acc957858daef19c46cbe2a72b3 /prompt | |
parent | d5dbddf68c45dfff380d6e6767de401054024a19 (diff) | |
download | git-sonar-61b5a9c87d77380c57f5349bc43cefa0f4415c4f.tar.gz git-sonar-61b5a9c87d77380c57f5349bc43cefa0f4415c4f.zip |
Rename to git-radar
Diffstat (limited to '')
-rwxr-xr-x | git-radar (renamed from prompt) | 0 | ||||
-rwxr-xr-x | prompt.bash | 2 | ||||
-rwxr-xr-x | prompt.zsh | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/prompt.bash b/prompt.bash index e39a1b1..d577087 100755 --- a/prompt.bash +++ b/prompt.bash @@ -1,7 +1,7 @@ #! /usr/bin/env bash dot="$(cd "$(dirname "$0")"; pwd)" -source "$dot/git-base.sh" +source "$dot/radar-base.sh" if is_repo; then printf " \033[1;30mgit:(\033[0m" @@ -1,7 +1,7 @@ #! /usr/bin/env zsh dot="$(cd "$(dirname "$0")"; pwd)" -source "$dot/git-base.sh" +source "$dot/radar-base.sh" if is_repo; then autoload colors && colors |