fixed paths

This commit is contained in:
2019-12-09 14:16:18 -08:00
parent 8a0f0dcee0
commit a61a527842
2 changed files with 7 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
export PATH="./node_modules/.bin;$PATH" export PATH="./node_modules/.bin:$PATH"
if [ -e "$HOME/.cargo/bin" ]; then if [ -e "$HOME/.cargo/bin" ]; then
export PATH="$HOME/.cargo/bin;$PATH" export PATH="$HOME/.cargo/bin:$PATH"
fi fi

5
bash.d/20-commands.sh Normal file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
function gr() {
cd "$(git rev-parse --show-toplevel)" || return
}