Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/e9d6f10b3c0b7afebe13617b1ac5f7bb49ad9b8b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
20 additions and
2 deletions
@ -52,8 +52,26 @@ function default_settings() {
function update_script( ) {
header_info
if [ [ ! -d /var ] ] ; then msg_error " No ${ APP } Installation Found! " ; exit; fi
msg_error "There is currently no update path available."
if [ [ ! -d /opt/pingvin-share ] ] ; then msg_error " No ${ APP } Installation Found! " ; exit; fi
msg_info "Stopping Pingvin Share"
pm2 stop pingvin-share-backend pingvin-share-frontend & >/dev/null
msg_ok "Stopped Pingvin Share"
msg_info "Updating Pingvin Share"
cd /opt/pingvin-share
git fetch --tags
git checkout $( git describe --tags ` git rev-list --tags --max-count= 1` ) & >/dev/null
cd backend
npm run build & >/dev/null
cd ../frontend
npm run build & >/dev/null
msg_ok "Updated Pingvin Share"
msg_info "Starting Pingvin Share"
pm2 start pingvin-share-backend pingvin-share-frontend & >/dev/null
msg_ok "Started Pingvin Share"
msg_ok "Updated Successfully"
exit
}