codemod --extensions sh '#!/usr/bin/env bash -e' '#!/usr/bin/env bash\nset -e'

This commit is contained in:
Michael Vines 2018-11-11 08:19:04 -08:00
parent 33aab094ef
commit def7d156f6
55 changed files with 112 additions and 56 deletions

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
#
# Audits project dependencies for security vulnerabilities
#

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
#
# Outputs the current crate version
#

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
usage() {
echo "Usage: $0 [--nopull] [docker image name] [command]"

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
cd "$(dirname "$0")"

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
cd "$(dirname "$0")"

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
cd "$(dirname "$0")"

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
cd "$(dirname "$0")"
eval "$(../channel-info.sh)"

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
export RUST_LOG=${RUST_LOG:-solana=info} # if RUST_LOG is unset, default to info
export RUST_BACKTRACE=1

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
#
# The standard BUILDKITE_PULL_REQUEST environment variable is always "false" due
# to how solana-ci-gate is used to trigger PR builds rather than using the

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
#
# Perform a quick sanity test on a leader, drone, validator and client running
# locally on the same machine

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
#
# Only run snap.sh for pull requests that modify files under /snap
#

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
#
# Run the entire buildkite CI pipeline locally for pre-testing before sending a
# Github pull request

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
#
# Reference: https://github.com/koalaman/shellcheck/wiki/Directive

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
here=$(dirname "$0")
cd "$here"/..

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."
source ci/upload_ci_artifact.sh

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")"/..

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")"/..

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")/.."

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
require() {
declare expectedProgram="$1"

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
if [[ $(uname) != Linux ]]; then
echo Performance libraries are only available for Linux

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
here=$(dirname "$0")
# shellcheck source=multinode-demo/common.sh

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
here=$(dirname "$0")
# shellcheck source=net/common.sh
@ -380,7 +381,8 @@ EOF
declare startupScript="$netConfigDir"/instance-startup-script.sh
cat > "$startupScript" <<EOF
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
# autogenerated at $(date)
cat > /etc/motd <<EOM

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
here=$(dirname "$0")
# shellcheck source=net/common.sh

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
here=$(dirname "$0")
SOLANA_ROOT="$(cd "$here"/..; pwd)"

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")"/../..

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")"/../..

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
#
# This script is to be run on the leader node
#

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
[[ $(uname) = Linux ]] || exit 1
[[ $USER = root ]] || exit 1

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
[[ $(uname) = Linux ]] || exit 1
[[ $USER = root ]] || exit 1

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
#
# Prevent background upgrades that block |apt-get|
#

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
[[ $(uname) = Linux ]] || exit 1
[[ $USER = root ]] || exit 1

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
#
# Install EarlyOOM
#

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
[[ $(uname) = Linux ]] || exit 1
[[ $USER = root ]] || exit 1

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
#
# Rsync setup for Snap builds
#

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
#
[[ $(uname) = Linux ]] || exit 1

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
#
# Some instances have docker running and docker0 network interface confuses
# gossip and airdrops fail. As a workaround for now simply remove the docker0

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
#
# Updates the default cuda symlink to the supported version
#

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -ex
#!/usr/bin/env bash
set -ex
# TODO building release flavor with rust produces a bunch of output .bc files
INTERDIR=../../../target/release

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
usage() {
cat <<EOF

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
#
# Installs native programs as |cargo install| doesn't know about them
#

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
#
# Send a metrics datapoint
#

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
#
# Reports network statistics
#

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
#
# Reports Linux OOM Killer activity
#

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")"/..

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash -e
#!/usr/bin/env bash
set -e
#
# Wallet sanity test
#