mirror of
https://github.com/YunoHost-Apps/duniter_ynh.git
synced 2024-09-03 18:26:35 +02:00
14 lines
183 B
Bash
Executable file
14 lines
183 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#set -e
|
|
|
|
# Stop uCoin daemon
|
|
pm2 stop ucoin
|
|
|
|
# Upgrade ucoin package
|
|
cd /home/yunohost.app/ucoin
|
|
git pull
|
|
sudo npm install -g .
|
|
|
|
# Restart uCoin daemon
|
|
pm2 restart ucoin
|