diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a874f4..28ac1d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## Release 0.0.13 (2019-06-24) + +- Fix alias not to depend on others + ## Release 0.0.12 (2019-06-15) - Fix Hombrew formula diff --git a/dotfiles/.rubbi.sh b/dotfiles/.rubbi.sh index 0fdc822..d5ef887 100644 --- a/dotfiles/.rubbi.sh +++ b/dotfiles/.rubbi.sh @@ -1,7 +1,5 @@ # shellcheck disable=SC2148 disable=SC1090 -. "$(dirname "$0")/.rubbi.minimal.sh" - alias rubsh='rubbi-sh' alias rubclean='rubbi-sh -clean' alias rubshow='rubbi-sh -show' @@ -29,3 +27,6 @@ function rubsel { rubbi-sh -use "$fn" rubcd } +function rbsh { + cd "$(rubbi-sh)" || exit 1 +}