Skip to content

Commit

Permalink
hack/go-tools-build.sh fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chrischdi committed Aug 31, 2023
1 parent 3a5f0d6 commit e46b1b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hack/go-tools-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ cd "${TMP_MODULE_DIR}"
go mod init "tools"

for PARAM in ${GOMOD_REPLACE}; do
eval go mod edit -replace ${PARAM}
eval go mod edit -replace "${PARAM}"
done
for PARAM in ${GOMOD_REQUIRE}; do
eval go mod edit -require ${PARAM}
eval go mod edit -require "${PARAM}"
done

# Create go file which imports the required package and resolve dependencies.
Expand Down

0 comments on commit e46b1b0

Please sign in to comment.