From 2a6451f76cdc7bf3620043c542fcac13ad544c05 Mon Sep 17 00:00:00 2001 From: donghongyu Date: Fri, 21 Jan 2022 17:43:12 +0800 Subject: [PATCH] =?UTF-8?q?[Upload]=20=E4=BF=AE=E5=A4=8D=E5=BC=82=E5=B8=B8?= =?UTF-8?q?=E6=9E=84=E5=BB=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: donghongyu --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index ab988cd7c8..c1354c58fc 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -321,7 +321,7 @@ def getWorkingBranchName() { */ def getWorkingBranchHash() { def workingBranchHash = "" - def proc = "git log -n1 --format=format:\"%h\"".execute() + def proc = "git log -n1 --format=format:%h".execute() proc.in.eachLine { line -> workingBranchHash = line } proc.err.eachLine { line -> println line } proc.waitFor()