9 lines
168 B
Plaintext
9 lines
168 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||
|
|
LOCAL_TOOLPATH="$DIR/toolpaths.local"
|
||
|
|
if [ -e "$LOCAL_TOOLPATH" ]
|
||
|
|
then
|
||
|
|
source $LOCAL_TOOLPATH
|
||
|
|
fi
|