Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/142da69c90563c52f2727c329fb80ec855548e77?style=unified&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
19 deletions
release.linux.sh
release.macx.sh
@ -5,6 +5,8 @@ rm -rf build/linux/release/
/usr/bin/qmake-qt4
make -j 4 release-install
VERSION = ` cat build/linux/release/version`
if [ ! -f build/linux/release/version ] ; then
echo "version not found"
@ -15,17 +17,9 @@ else
echo creating a tag with the version $VERSION
git tag -a " v $VERSION " -m " Generating setup for v $VERSION "
git push origin --tags
else
if [ " $1 " != "escape" ] ; then
echo "if you have already compiled a release (e.g. on a different os) please use the following command line"
echo sh release.linux.sh escape
exit 2
fi
fi
fi
make -j 4 release-install
cp resources/linux/run.sh build/linux/release/product
chmod +x build/linux/release/product/run.sh
@ -64,10 +64,14 @@ rm -rf "$BUILD_DIR"
# generate Makefiles
notify "Generating Makefile ..."
QMAKE_CMD = " $QMAKE -spec macx-g++42 "
QMAKE_CMD = " $QMAKE -spec macx-g++ "
$QMAKE_CMD
# build
notify "Compiling ..."
make -j4 release
VERSION = ` cat " $BUILD_DIR /version " `
if [ ! -f " $BUILD_DIR /version " ] ; then
echo "version not found"
@ -78,19 +82,9 @@ else
echo creating a tag with the version $VERSION
git tag -a " v $VERSION " -m " Generated setup for v $VERSION "
git push origin --tags
else
if [ " $1 " != "escape" ] ; then
echo "if you have already compiled a release (e.g. on a different os) please use the fallowing command line"
echo sh release.macx.sh escape
exit 2
fi
fi
fi
# build
notify "Compiling ..."
make -j4 release
if [ $? != 0 ] ; then
abort "compilation failed"
fi