renatoathaydes / osgi-run

Osgi-Run - A Gradle plugin to make the development of modular applications using OSGi completely painless
Apache License 2.0
54 stars 13 forks source link

change #!/bin/sh to #!/bin/bash solves issue41 #42

Closed npetzall closed 8 years ago

npetzall commented 8 years ago

zsh outputs "3: bad substitution" since instruction is sh but ${BASH_SOURCE[ 0 ]} is used. Changing to #!/bin/bash removes the output when using zsh.

renatoathaydes commented 8 years ago

Worked perfectly. Thank you.