1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-246 CI | Enhancement | Change date format for builds (#2460)

This commit is contained in:
Evgenii Kozlov 2022-08-02 18:05:54 +03:00 committed by GitHub
parent a838383106
commit b0fb060c43
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -113,6 +113,6 @@ ext.getBuildVersionCode = {
static def getCurrentDate() {
def date = new Date()
def sdf = new SimpleDateFormat("MM-dd-yyyy")
def sdf = new SimpleDateFormat("dd.MM.yy")
return sdf.format(date)
}