9 lines
196 B
Plaintext
9 lines
196 B
Plaintext
|
#!/bin/env sh
|
||
|
# hookup /tools/ to be usable no matter where
|
||
|
# usage: `source hookup`
|
||
|
|
||
|
set +e
|
||
|
|
||
|
# TODO: prevent double hooking
|
||
|
export PATH=$PATH:$(realpath $(dirname -- "${BASH_SOURCE[0]}")/tools/)
|