mirror of
https://github.com/mempool/mempool.git
synced 2025-01-01 03:04:27 +01:00
26 lines
645 B
Plaintext
26 lines
645 B
Plaintext
|
#!/usr/local/bin/zsh -x
|
||
|
PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:$HOME/bin
|
||
|
|
||
|
[ -f $HOME/lock ] && exit 1
|
||
|
touch $HOME/lock
|
||
|
|
||
|
echo 'rebuilding mempool sites'|wall
|
||
|
|
||
|
for site in mainnet liquid testnet
|
||
|
do
|
||
|
cd "$HOME/${site}"
|
||
|
git pull origin master
|
||
|
hash=$(git rev-parse HEAD)
|
||
|
cd "$HOME/${site}/frontend"
|
||
|
npm run build
|
||
|
rsync -av ./dist/mempool/* "${HOME}/public_html/${site}/"
|
||
|
cd "$HOME/${site}/backend"
|
||
|
npm run build
|
||
|
done
|
||
|
|
||
|
ps uaxw|grep 'node dist/index'|grep -v grep|awk '{print $2}'|xargs -n 1 kill
|
||
|
|
||
|
keybase chat send --channel dev mempool "All mempool sites updated to ${hash}"
|
||
|
|
||
|
rm "$HOME/lock"
|