7 lines
250 B
Bash
7 lines
250 B
Bash
# Source this into your shell config, e.g. ~/.zshrc
|
|
|
|
# Bash scripts can't change the working directory of their callers. This is
|
|
# right and proper, but we need to work around it in this case.
|
|
#
|
|
repo () { cd $($(dirname ${BASH_SOURCE[0]})/repo $@) }
|