Skip to content

Commit

Permalink
sort out the yarn pkg mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
otherview committed Jan 22, 2024
1 parent 8261148 commit e44655a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,10 @@ echo -e "${obscuro_constants_file}" > src/obscuro_constants_1.ts
cat src/obscuro_constants.ts |tail -n+4>> src/obscuro_constants_1.ts
mv src/obscuro_constants_1.ts src/obscuro_constants.ts
cp -f "${uniswap_sor_path}/uniswap-smart-order-router-2.9.3.tgz" .
yarn install --update-checksums
echo "yarn install --update-checksums && yarn build && serve -s build -l 80 -n"
yarn install --update-checksums && yarn build && serve -s build -l 80 -n
# Double install to sort out the yarn.lock missmatch
yarn install --update-checksums || true \
&& yarn install --update-checksums && yarn build \
&& serve -s build -l 80 -n



Expand Down

0 comments on commit e44655a

Please sign in to comment.