fluencelabs / dev-rewards

Apache License 2.0
570 stars 374 forks source link

[DUG]: invalid option nameet: pipefail #127

Open alittlehorse opened 5 months ago

alittlehorse commented 5 months ago
alittlehorse commented 5 months ago

fix install.sh from

set -o errexit -o nounset -o pipefail

to

set -o errexit
set -o nounset
set -o pipefail