Skip to content

Commit

Permalink
chore: fix typo var name in shell (#2955)
Browse files Browse the repository at this point in the history
  • Loading branch information
mo3et authored Oct 23, 2023
1 parent 6c026bc commit fb926d4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions hack/resolve-modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ set -o errexit

echo "Resolving modules in $(pwd)"

KRAOTS_HOME=$(
KRATOS_HOME=$(
cd "$(dirname "${BASH_SOURCE[0]}")" &&
cd .. &&
pwd
)

source "${KRAOTS_HOME}/hack/util.sh"
source "${KRATOS_HOME}/hack/util.sh"

FAILURE_FILE=${KRAOTS_HOME}/hack/.lintcheck_failures
FAILURE_FILE=${KRATOS_HOME}/hack/.lintcheck_failures

all_modules=$(util::find_modules)
failing_modules=()
Expand Down
12 changes: 6 additions & 6 deletions hack/tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,18 @@ set -o nounset
set -o pipefail

GO111MODULE=on
KRAOTS_HOME=$(
KRATOS_HOME=$(
cd "$(dirname "${BASH_SOURCE[0]}")" &&
cd .. &&
pwd
)

source "${KRAOTS_HOME}/hack/util.sh"
source "${KRATOS_HOME}/hack/util.sh"

LINTER=${KRAOTS_HOME}/bin/golangci-lint
LINTER_CONFIG=${KRAOTS_HOME}/.golangci.yml
FAILURE_FILE=${KRAOTS_HOME}/hack/.lintcheck_failures
IGNORED_FILE=${KRAOTS_HOME}/hack/.test_ignored_files
LINTER=${KRATOS_HOME}/bin/golangci-lint
LINTER_CONFIG=${KRATOS_HOME}/.golangci.yml
FAILURE_FILE=${KRATOS_HOME}/hack/.lintcheck_failures
IGNORED_FILE=${KRATOS_HOME}/hack/.test_ignored_files

all_modules=$(util::find_modules)
failing_modules=()
Expand Down

0 comments on commit fb926d4

Please sign in to comment.