Skip to content

Commit

Permalink
Fix Makefile build-tendermint-cw rule
Browse files Browse the repository at this point in the history
  • Loading branch information
seanchen1991 committed Aug 6, 2024
1 parent 6151900 commit 93e57e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ release: ## Perform an actual release and publishes to crates.io.

build-tendermint-cw: ## Build the WASM file for the ICS-07 Tendermint light client.
@echo "Building the WASM file for the ICS-07 Tendermint light client"
cd cosmwasm/
RUSTFLAGS='-C link-arg=-s' cargo build -p ibc-client-tendermint-cw --target wasm32-unknown-unknown --release --lib --locked
mkdir -p cw-contracts
cp target/wasm32-unknown-unknown/release/ibc_client_tendermint_cw.wasm cw-contracts/
cd cosmwasm && \
RUSTFLAGS='-C link-arg=-s' cargo build -p ibc-client-tendermint-cw --target wasm32-unknown-unknown --release --lib --locked && \
mkdir -p cw-contracts && \
cp target/wasm32-unknown-unknown/release/ibc_client_tendermint_cw.wasm cw-contracts/

0 comments on commit 93e57e4

Please sign in to comment.