Merge pull request #2367 from crazyserver/MOBILE-3401

Mobile 3401
main
Juan Leyva 2020-05-07 16:49:16 +02:00 committed by GitHub
commit 345f516972
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 0 deletions

7
.gitignore vendored
View File

@ -26,6 +26,13 @@ platforms/
/plugins/
/plugins/android.json
/plugins/ios.json
resources/android/icon
resources/android/splash
resources/ios/icon
resources/ios/splash
resources/windows/icon
resources/windows/splash
config.xml
www/
!www/README.md
$RECYCLE.BIN/

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -60,12 +60,18 @@ if [ "$TRAVIS_BRANCH" == 'master' ]; then
git commit -m 'Update licenses [ci skip]'
git push origin HEAD:$TRAVIS_BRANCH
check_success_exit "Unsuccessful push, stopping..."
fi
if [ "$TRAVIS_BRANCH" == 'integration' ] || [ "$TRAVIS_BRANCH" == 'master' ] || [ "$TRAVIS_BRANCH" == 'desktop' ] ; then
print_title "Mirror repository"
git remote add mirror https://$GIT_TOKEN@github.com/$GIT_ORG_PRIVATE/moodleapp.git
git fetch -q --unshallow mirror
check_success_exit "Unsuccessful fetch, stopping..."
git fetch -q --unshallow origin
check_success_exit "Unsuccessful fetch, stopping..."
git push -f mirror HEAD:$TRAVIS_BRANCH
check_success_exit "Unsuccessful mirror, stopping..."
git push -f mirror --tags
check_success_exit "Unsuccessful mirror tags, stopping..."
fi