Add non 0 exit code for missing jump targets ()

This allows for the user to combine the jump command with something else. In my example cd and jump are now combined like this:

```bash
jumpcd() {
        jump $1 > /dev/null || cd $1
}
alias cd="jumpcd"
```
This commit is contained in:
diego 2016-10-07 23:54:54 +02:00 committed by Marc Cornellà
parent 7f9b773350
commit d69f2850af

View file

@ -9,7 +9,7 @@
export MARKPATH=$HOME/.marks
jump() {
cd -P "$MARKPATH/$1" 2>/dev/null || echo "No such mark: $1"
cd -P "$MARKPATH/$1" 2>/dev/null || {echo "No such mark: $1"; return 1}
}
mark() {