mirror of
https://github.com/vacp2p/staking-reward-streamer.git
synced 2026-01-09 15:27:55 -05:00
21 lines
255 B
Bash
21 lines
255 B
Bash
#!/bin/bash
|
|
|
|
foundryup
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "foundryup failed."
|
|
exit 1
|
|
fi
|
|
|
|
pnpm run adorno
|
|
|
|
if [ $? -ne 0 ]; then
|
|
echo "pnpm run adorno failed."
|
|
exit 1
|
|
fi
|
|
|
|
git add .
|
|
|
|
echo "Successfully ran pnpm run adorno and added modified files."
|
|
|
|
exit 0 |