Skip to content

Commit

Permalink
Scripts may not be executable, invoke with bash (#1673)
Browse files Browse the repository at this point in the history
  • Loading branch information
gdbelvin authored Jun 12, 2019
1 parent 5362a0a commit 05461f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ log_prep_test() {
go build ${GOFLAGS} github.com/google/trillian/server/trillian_log_signer/

# Wipe the test database
yes | "${TRILLIAN_PATH}/scripts/resetdb.sh"
yes | bash "${TRILLIAN_PATH}/scripts/resetdb.sh"

local logserver_opts=''
local logsigner_opts=''
Expand Down Expand Up @@ -284,7 +284,7 @@ map_prep_test() {
go build ${GOFLAGS} github.com/google/trillian/server/trillian_map_server/

# Wipe the test database
yes | "${TRILLIAN_PATH}/scripts/resetdb.sh"
yes | bash "${TRILLIAN_PATH}/scripts/resetdb.sh"

# Start a set of Map RPC servers.
for ((i=0; i < rpc_server_count; i++)); do
Expand Down

0 comments on commit 05461f4

Please sign in to comment.