Skip to content

Commit

Permalink
fix: Renamed MODULE_DIR to TF_MODULE_PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
robcoward committed Jul 23, 2024
1 parent 270cac5 commit 14f3ed9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ source "$(dirname "$0")/common.sh"
info "Running module tests"

# Required parameters
MODULE_DIR=${MODULE_DIR:?"MODULE_DIR env variable is required"}
TF_MODULE_PATH=${TF_MODULE_PATH:?"TF_MODULE_PATH env variable is required"}

# Default values
DEBUG=${DEBUG:="false"}
Expand All @@ -24,7 +24,7 @@ enable_debug() {
}
enable_debug

cd ${MODULE_DIR}
cd ${TF_MODULE_PATH}

if [[ "${RUN_FMT}" == "true" ]]; then
info "Checking module formatting"
Expand Down

0 comments on commit 14f3ed9

Please sign in to comment.