From 2a5dffc1f5d2a761b829c2151b04aed49c78555e Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Thu, 23 Jan 2020 10:57:59 +0100 Subject: [PATCH] Use 2 space indent --- scripts/cosm/start.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/scripts/cosm/start.sh b/scripts/cosm/start.sh index a3d91c2a..93372d7b 100755 --- a/scripts/cosm/start.sh +++ b/scripts/cosm/start.sh @@ -15,15 +15,15 @@ REST_SERVER_LOGFILE="$TMP_DIR/rest-server.log" # This starts up wasmd docker volume rm -f wasmd_data docker run --rm \ - --name "$CONTAINER_NAME" \ - -p 1317:1317 \ - -p 26657:26657 \ - -p 26656:26656 \ - --mount type=bind,source="$(pwd)/template",target=/template \ - --mount type=volume,source=wasmd_data,target=/root \ - "cosmwasm/$CONTAINER_NAME:$VERSION" \ - ./run_wasmd.sh /template \ - > "$WASMD_LOGFILE" & + --name "$CONTAINER_NAME" \ + -p 1317:1317 \ + -p 26657:26657 \ + -p 26656:26656 \ + --mount type=bind,source="$(pwd)/template",target=/template \ + --mount type=volume,source=wasmd_data,target=/root \ + "cosmwasm/$CONTAINER_NAME:$VERSION" \ + ./run_wasmd.sh /template \ + > "$WASMD_LOGFILE" & echo "wasmd running and logging into $WASMD_LOGFILE"