Closed zentrope closed 7 years ago
For scripts installed in:
~/Library/Application Support/BBEdit/Packages/Go.bbpackage/Contents/Scripts/go tool
such as goimport.sh:
goimport.sh
PATH="$(dirname "$0")/../Resources":$PATH (gorunner goimports -w "$BB_DOC_PATH" 2>&1) | bbr -t "goimports"
doesn't work, but:
PATH="$(dirname "$0")/../../Resources":$PATH (gorunner goimports -w "$BB_DOC_PATH" 2>&1) | bbr -t "goimports"
does. Note the extra ../ in there.
../
Thanks @zentrope. I'll test and fix it tonight.
For scripts installed in:
such as
goimport.sh
:doesn't work, but:
does. Note the extra
../
in there.