Fix up spellcheck errors

This commit is contained in:
Ethan Frey 2020-01-30 19:28:23 +01:00
parent e94f32c765
commit d0de8d5b2b
4 changed files with 9 additions and 2 deletions

View File

@ -2,8 +2,9 @@
set -o errexit -o nounset -o pipefail
command -v shellcheck > /dev/null && shellcheck "$0"
SCRIPT_DIR="$(realpath "$(dirname "$0")")"
# shellcheck source=./env
# shellcheck disable=SC1091
source "$SCRIPT_DIR"/env
# TODO: make this run as UID? Does this matter?

View File

@ -2,4 +2,4 @@
REPOSITORY="cosmwasm/wasmd-demo"
VERSION="latest"
BLOCKCHAIN_CONTAINER_NAME="wasmd"
CONTAINER_NAME="wasmd"

View File

@ -3,8 +3,12 @@ set -o errexit -o nounset -o pipefail
command -v shellcheck > /dev/null && shellcheck "$0"
SCRIPT_DIR="$(realpath "$(dirname "$0")")"
# shellcheck source=./env
# shellcheck disable=SC1091
source "$SCRIPT_DIR"/env
echo "$CONTAINER_NAME"
TMP_DIR=$(mktemp -d "${TMPDIR:-/tmp}/gaia.XXXXXXXXX")
chmod 777 "$TMP_DIR"
echo "Using temporary dir $TMP_DIR"

View File

@ -3,6 +3,8 @@ set -o errexit -o nounset -o pipefail
command -v shellcheck > /dev/null && shellcheck "$0"
SCRIPT_DIR="$(realpath "$(dirname "$0")")"
# shellcheck source=./env
# shellcheck disable=SC1091
source "$SCRIPT_DIR"/env
echo "Killing Cosmos container..."