Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting https://git.osmesh.ru/MOS/OpenBoard/commit/b4917d7902a513e35d8cbfad12348cf3d8037a4c?style=unified&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
4 additions and
3 deletions
release_scripts/linux/build.sh
release_scripts/linux/package.sh
release_scripts/osx/release.macx.sh
@ -20,7 +20,8 @@ initializeVariables()
STANDARD_QT_USED = false
# Root directory
PROJECT_ROOT = "`pwd`/../.."
SCRIPT_PATH = " $( cd " $( dirname " ${ BASH_SOURCE [0] } " ) " && pwd ) "
PROJECT_ROOT = " $SCRIPT_PATH /../.. "
BUILD_DIR = " $PROJECT_ROOT /build/linux/release "
PRODUCT_PATH = " $BUILD_DIR /product "
@ -107,7 +107,7 @@ copyQtPlugin(){
initializeVariables( )
{
# This script's path
SCRIPT_PATH = ` pwd `
SCRIPT_PATH = " $( cd " $( dirname " ${ BASH_SOURCE [0] } " ) " && pwd ) "
PROJECT_ROOT = " $SCRIPT_PATH /../.. "
@ -14,7 +14,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# ---------------------------------------------------------------------
SCRIPT_PATH = "`pwd` "
SCRIPT_PATH = " $( cd " $( dirname " ${ BASH_SOURCE [0] } " ) " && pwd ) "
PROJECT_ROOT = " $SCRIPT_PATH /../.. "