Your ROOT_URL in app.ini is https://git.bwnetwork.us/ but you are visiting http://git.bwnetwork.us/Administrator/Proxmox_Helper_scripts/commit/1a363ef9a579ec5eecb2e641bdd65952da7c9f06?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -43,7 +43,7 @@ trap 'error_handler $LINENO "$BASH_COMMAND"' ERR
trap cleanup EXIT
trap cleanup EXIT
function error_handler( ) {
function error_handler( ) {
if [ -n " $SPINNER_PID " ] && ps -p $SPINNER_PID > /dev/null; then kill $SPINNER_PID ; fi
if [ -n " $SPINNER_PID " ] && ps -p $SPINNER_PID > /dev/null; then kill $SPINNER_PID > /dev/null ; fi
printf "\e[?25h"
printf "\e[?25h"
local exit_code = " $? "
local exit_code = " $? "
local line_number = " $1 "
local line_number = " $1 "
@ -91,14 +91,14 @@ function msg_info() {
}
}
function msg_ok( ) {
function msg_ok( ) {
if [ -n " $SPINNER_PID " ] && ps -p $SPINNER_PID > /dev/null; then kill $SPINNER_PID ; fi
if [ -n " $SPINNER_PID " ] && ps -p $SPINNER_PID > /dev/null; then kill $SPINNER_PID > /dev/null ; fi
printf "\e[?25h"
printf "\e[?25h"
local msg = " $1 "
local msg = " $1 "
echo -e " ${ BFR } ${ CM } ${ GN } ${ msg } ${ CL } "
echo -e " ${ BFR } ${ CM } ${ GN } ${ msg } ${ CL } "
}
}
function msg_error( ) {
function msg_error( ) {
if [ -n " $SPINNER_PID " ] && ps -p $SPINNER_PID > /dev/null; then kill $SPINNER_PID ; fi
if [ -n " $SPINNER_PID " ] && ps -p $SPINNER_PID > /dev/null; then kill $SPINNER_PID > /dev/null ; fi
printf "\e[?25h"
printf "\e[?25h"
local msg = " $1 "
local msg = " $1 "
echo -e " ${ BFR } ${ CROSS } ${ RD } ${ msg } ${ CL } "
echo -e " ${ BFR } ${ CROSS } ${ RD } ${ msg } ${ CL } "