Skip to content
Snippets Groups Projects
Commit 106aa7da authored by Benoit Lavenier's avatar Benoit Lavenier
Browse files

[fix] Build desktop release: make sure to checkout last updates

parent 6bfcadcd
No related branches found
No related tags found
No related merge requests found
Pipeline #7149 failed
......@@ -2,6 +2,8 @@
"name": "cesium",
"version": "1.4.12",
"description": "Cesium Wallet for G1 libre currency",
"author": "Benoit Lavenier <benoit.lavenier@e-is.pro>",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git@git.duniter.org:clients/cesium/cesium.git"
......@@ -22,8 +24,6 @@
"cordova",
"crypto-currency"
],
"author": "Benoit Lavenier <benoit.lavenier@e-is.pro>",
"license": "AGPL-3.0",
"readmeFilename": "README.md",
"bugs": {
"url": "https://git.duniter.org/clients/cesium-grp/cesium/issues",
......@@ -131,7 +131,7 @@
{
"platform": "ios",
"version": "5.1.0",
"locator": "https://github.com/E-IS/cordova-ios.git#5.1.0"
"locator": "https://github.com/bpresles/cordova-ios.git#5.1.0"
},
{
"platform": "android",
......
......@@ -161,12 +161,17 @@ echo "----------------------------------"
echo "- Building desktop artifacts..."
echo "----------------------------------"
git submodule init
git submodule sync
git submodule update --remote --merge
git submodule init && git submodule sync && git submodule update --remote --merge
if [[ $? -ne 0 ]]; then
echo "Unable to sync git submodule. Could not build desktop version"
exit 1
fi
if [[ -d "${DIRNAME}/platforms/desktop" ]]; then
cd ${DIRNAME}/platforms/desktop
cd "${DIRNAME}/platforms/desktop"
# Fetch last updates
git fetch origin && git merge origin/master || exit 1
# Build desktop assets
./release.sh $2
......
resources/android/store/logo_512px.png

72 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment