diff options
author | Claudio Bandera <cbandera@posteo.de> | 2017-03-28 22:52:41 +0200 |
---|---|---|
committer | Claudio Bandera <cbandera@posteo.de> | 2017-03-28 22:52:41 +0200 |
commit | 51bd4bc64308f1eb8e1aab20d6f3280549098267 (patch) | |
tree | 2472945e98d7ea93fbe1e1dd2c010a0c79ec6b80 | |
parent | d4a487f1fa4cc048f9ca50a3d47c4aa8d6dee8bd (diff) | |
parent | 2ac25e3d1047cdf19f15bc894ff39449b83d65d4 (diff) | |
download | git-sonar-51bd4bc64308f1eb8e1aab20d6f3280549098267.tar.gz git-sonar-51bd4bc64308f1eb8e1aab20d6f3280549098267.zip |
Merge branch 'master' into hotfix/unittests
-rw-r--r-- | README.md | 5 | ||||
-rwxr-xr-x | radar-base.sh | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -32,6 +32,7 @@ last few years. Maybe it can help you too. - [Colouring the remote commits status](#colouring-the-remote-commits-status) - [Colouring the file changes status](#colouring-the-file-changes-status) - [License](#license) +- [Links](#links) ## Installation @@ -557,6 +558,10 @@ Git Radar is licensed under the MIT license. See [LICENSE] for the full license text. +## Links + +* [mini-git-radar](https://github.com/bogem/mini-git-radar) - lightweight version of git-radar. Only for macOS and bash/fish. + [LICENSE]: https://github.com/michaeldfallen/git-radar/blob/master/LICENSE [git:(master) 1≡]: https://raw.githubusercontent.com/michaeldfallen/git-radar/master/images/stash.png [git:(master) 3A]: https://raw.githubusercontent.com/michaeldfallen/git-radar/master/images/untracked.png diff --git a/radar-base.sh b/radar-base.sh index 9d337cc..12a8478 100755 --- a/radar-base.sh +++ b/radar-base.sh @@ -542,7 +542,7 @@ stashed_status() { } is_cwd_a_dot_git_directory() { - [[ "$(basename $PWD)" == ".git" ]]; return $? + [[ "$(basename "$PWD")" == ".git" ]]; return $? } stash_status() { |