mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-19 04:19:14 +01:00
Fix commit count command
This commit is contained in:
parent
9c0abdeb81
commit
a1d67c0fce
@ -13,7 +13,7 @@ ext {
|
|||||||
// Git is needed in your system PATH for these commands to work.
|
// Git is needed in your system PATH for these commands to work.
|
||||||
// If it's not installed, you can return a random value as a workaround
|
// If it's not installed, you can return a random value as a workaround
|
||||||
getCommitCount = {
|
getCommitCount = {
|
||||||
return "git rev-list --count master".execute().text.trim()
|
return 'git rev-list --count origin/master'.execute().text.trim()
|
||||||
// return "1"
|
// return "1"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user