Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/94c5b2b5242c4be44a4d638ee284d29a08601d1f?style=unified&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
10 additions and
23 deletions
buildDebianPackage.sh
@ -32,7 +32,6 @@ initializeVariables()
{
APPLICATION_NAME = "OpenBoard"
MAKE_TAG = true
CREATE_DIENA_DISTRIBUTION_ZIP = false
STANDARD_QT_USED = false
PRODUCT_PATH = "build/linux/release/product"
@ -159,9 +158,6 @@ do
if [ $var = = "notag" ] ; then
MAKE_TAG = false;
fi
if [ $var = = "diena" ] ; then
CREATE_DIENA_DISTRIBUTION_ZIP = true;
fi
done
@ -422,13 +418,4 @@ rm -rf $BASE_WORKING_DIR
notifyProgress " ${ APPLICATION_NAME } " "Package built"
if [ $CREATE_DIENA_DISTRIBUTION_ZIP = = true ] ; then
ZIP_NAME = " ${ APPLICATION_NAME } _`lsb_release -is`_`lsb_release -rs`_ ${ VERSION } _ ${ ARCHITECTURE } .zip "
cd install/linux
$ZIP_PATH -1 --junk-paths ${ ZIP_NAME } ${ DEBIAN_PACKAGE_NAME } ../../ReleaseNotes.pdf ../../JournalDesModifications.pdf
cd -
notifyProgress " ${ APPLICATION_NAME } " "Build Diena zip file for distribution"
fi
exit 0