Skip to content

Commit

Permalink
fix typo in wasm build
Browse files Browse the repository at this point in the history
  • Loading branch information
humanalgorithm committed Jan 29, 2024
1 parent d5ba86e commit b139dc6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ jobs:
echo "Compiling `basename $C`..."
(cd $C && cargo build --release --lib --target wasm32-unknown-unknown --locked)
done
for C in ./contracts/dxdy-airdrop/
for C in ./contracts/dydx-airdrop/
do
echo "Compiling `basename $C`..."
(cd $C && cargo build --release --lib --target wasm32-unknown-unknown --locked)
Expand Down
2 changes: 1 addition & 1 deletion scripts/publish-contracts.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ cd contracts/minters/vending-minter-merkle-wl && cargo publish && cd ../../..

cd contracts/rekt-airdrop && cargo publish && cd ../..
sleep 15
cd contracts/dxdy-airdrop && cargo publish && cd ../..
cd contracts/dydx-airdrop && cargo publish && cd ../..
sleep 15
cd test-suite && cargo publish && cd ..
2 changes: 1 addition & 1 deletion scripts/schema.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ for d in contracts/whitelists/*; do
fi
done
cd contracts/rekt-airdrop && cargo schema && rm -rf schema/raw && cd ../..
cd contracts/dxdy-airdrop && cargo schema && rm -rf schema/raw && cd ../..
cd contracts/dydx-airdrop && cargo schema && rm -rf schema/raw && cd ../..
cd contracts/splits && cargo schema && rm -rf schema/raw && cd ../..

cd ts && yarn install && yarn codegen
Expand Down

0 comments on commit b139dc6

Please sign in to comment.