Fix up spellcheck errors
This commit is contained in:
parent
e94f32c765
commit
d0de8d5b2b
@ -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?
|
||||
|
||||
@ -2,4 +2,4 @@
|
||||
REPOSITORY="cosmwasm/wasmd-demo"
|
||||
VERSION="latest"
|
||||
|
||||
BLOCKCHAIN_CONTAINER_NAME="wasmd"
|
||||
CONTAINER_NAME="wasmd"
|
||||
@ -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"
|
||||
|
||||
@ -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..."
|
||||
|
||||
Loading…
Reference in New Issue
Block a user