forked from forks/go-ethereum
7 lines
86 B
Bash
Executable file
7 lines
86 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
swarm-smoke $@ 2>&1 || true
|