evolbioinfo / gotree

Gotree is a set of command line tools and an API to manipulate phylogenetic trees. It is implemented in Go language.
GNU General Public License v2.0
118 stars 15 forks source link

Use a shebang to enforce running test.sh in bash #24

Closed krtab closed 2 months ago

krtab commented 2 months ago

Commit b959a7f3eccdebda804206232a37f1d651f5dd5c was made because test.sh cannot run on systems where the default shell is not bash compatible (e.g. zsh). (cf https://github.com/evolbioinfo/gotree/pull/23)

A shebang allows to force the use of bash to interpret the shell script. This version using /usr/bin/env should be the most portable.

@lucblassel It this working fine for you?