mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-07 20:05:05 +00:00
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
|