mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
test, scripts: use /usr/bin/env to find bash
use /usr/bin/env to find bash add set -e back into scripts it was removed from
This commit is contained in:
parent
668a8a8367
commit
1239e1ce6f
3
cover
3
cover
@ -1,8 +1,9 @@
|
||||
#!/bin/bash -e
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# Generate coverage HTML for a package
|
||||
# e.g. PKG=./unit ./cover
|
||||
#
|
||||
set -e
|
||||
|
||||
if [ -z "$PKG" ]; then
|
||||
echo "cover only works with a single package, sorry"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# A non-installed actool can be used, for example:
|
||||
# ACTOOL=../../appc/spec/bin/actool
|
||||
|
@ -1,4 +1,4 @@
|
||||
#!/usr/bin/bash
|
||||
#!/usr/bin/env bash
|
||||
tar cv --files-from /dev/null | docker import - scratch
|
||||
|
||||
cat <<DF > Dockerfile
|
||||
|
@ -1,8 +1,9 @@
|
||||
#!/bin/bash -e
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# Generate all etcd protobuf bindings.
|
||||
# Run from repository root.
|
||||
#
|
||||
set -e
|
||||
|
||||
PREFIX="github.com/coreos/etcd/Godeps/_workspace/src"
|
||||
DIRS="./wal/walpb ./etcdserver/etcdserverpb ./snap/snappb ./raft/raftpb ./storage/storagepb"
|
||||
@ -27,7 +28,7 @@ popd
|
||||
export PATH="${GOBIN}:${PATH}"
|
||||
|
||||
# copy all proto dependencies inside etcd to gopath
|
||||
for dir in ${DIRS}; do
|
||||
for dir in ${DIRS}; do
|
||||
mkdir -p ${GOPATH}/src/github.com/coreos/etcd/${dir}
|
||||
pushd ${dir}
|
||||
cp *.proto ${GOPATH}/src/github.com/coreos/etcd/${dir}
|
||||
|
Loading…
x
Reference in New Issue
Block a user