Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Fix commit count in travis' build

Cette révision appartient à :
len 2017-09-30 20:40:44 +02:00
Parent 9fdc5b4b9d
révision dd3f5a146d
2 fichiers modifiés avec 5 ajouts et 1 suppressions

Voir le fichier

@ -1,6 +1,9 @@
language: android
android:
components:
- tools
- platform-tools
- tools
- build-tools-26.0.1
- android-26
- extra-android-m2repository

Voir le fichier

@ -1,9 +1,10 @@
#!/bin/bash
git fetch --unshallow #required for commit count
if [ -z "$TRAVIS_TAG" ]; then
./gradlew clean buildStandardDebug
git fetch --unshallow #required for commit count
COMMIT_COUNT=$(git rev-list --count HEAD)
export ARTIFACT="tachiyomi-r${COMMIT_COUNT}.apk"