summaryrefslogtreecommitdiffstats
path: root/config/sh/functions
diff options
context:
space:
mode:
Diffstat (limited to 'config/sh/functions')
-rw-r--r--config/sh/functions8
1 files changed, 1 insertions, 7 deletions
diff --git a/config/sh/functions b/config/sh/functions
index 76db947..b64c4cf 100644
--- a/config/sh/functions
+++ b/config/sh/functions
@@ -8,13 +8,7 @@ function perldoc {
}
function cdu {
- local root
- root="$(git rev-parse --show-superproject-working-tree 2>/dev/null)"
- if [ -n "$root" ]; then
- cd "$root" || return
- else
- cd "$(git rev-parse --show-toplevel)" || return
- fi
+ cd "$(git root)" || return
}
# vim:ft=sh: