45 lines
		
	
	
		
			942 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			942 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/local/bin/zsh -x
 | |
| PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:$HOME/bin
 | |
| 
 | |
| if [ -f $HOME/lock ];then
 | |
|     echo "check lockfile"
 | |
|     exit 1
 | |
| fi
 | |
| 
 | |
| touch $HOME/lock
 | |
| 
 | |
| export NVM_DIR="$HOME/.nvm"
 | |
| source "$NVM_DIR/nvm.sh"
 | |
| 
 | |
| echo 'upgrading mempool'|wall
 | |
| 
 | |
| cd "$HOME/mempool"
 | |
| git pull --rebase origin master
 | |
| cd "$HOME/"
 | |
| 
 | |
| for site in mainnet liquid testnet bisq
 | |
| do
 | |
|     cd "$HOME/${site}"
 | |
|     git pull --rebase origin master
 | |
|     hash=$(git rev-parse HEAD)
 | |
| 
 | |
|     if [ "${site}" = "mainnet" ]
 | |
|     then
 | |
|         cd "$HOME/${site}/frontend"
 | |
|         npm install --only=prod
 | |
|         npm run build
 | |
|         rsync -av ./dist/mempool/* "${HOME}/public_html/${site}/"
 | |
|     fi
 | |
| 
 | |
|     cd "$HOME/${site}/backend"
 | |
|     npm install --only=prod
 | |
|     npm run build
 | |
| done
 | |
| 
 | |
| ps uaxw|grep 'dist/index'|grep -v grep|awk '{print $2}'|xargs -n 1 kill
 | |
| 
 | |
| hostname=$(hostname)
 | |
| keybase chat send --channel dev mempool "${hostname} updated to ${hash}"
 | |
| 
 | |
| rm "$HOME/lock"
 |