diff options
-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() { |