Skip to content

Commit

Permalink
terra: interface override
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-gray authored and kcsongor committed Dec 6, 2023
1 parent 9a8c1f9 commit 4dc9bbb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion terra/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ token_bridge_SOURCE=token_bridge_terra

SOURCE_FILES=$(shell find . -name "*.rs" -or -name "*.lock" -or -name "*.toml" | grep -v target)

PACKAGES=$(shell find . -name "Cargo.toml" | grep -E 'contracts' | xargs cat | grep "name *=" | cut -d' ' -f3 | sed s/\"//g | sed s/-/_/g)
PACKAGES=$(shell find . -name "Cargo.toml" | grep -E 'contracts' | xargs cat | grep "name *=" | cut -d' ' -f3 | sed s/\"//g | sed s/-/_/g | grep -v wormhole_bridge_terra)
WASMS=$(patsubst %, artifacts/%.wasm, $(PACKAGES))

-include ../Makefile.help
Expand All @@ -23,6 +23,7 @@ endif

$(WASMS) artifacts/checksums.txt: $(SOURCE_FILES)
DOCKER_BUILDKIT=1 docker build --target artifacts -o artifacts .
sed -i 's/interface_version_7/interface_version_8/g' $(WASMS)

payer-$(NETWORK):
$(error Missing private key in payer-$(NETWORK))
Expand Down

0 comments on commit 4dc9bbb

Please sign in to comment.