From 7a536eeb8228cbfcf79c1955e9da7c43ede81419 Mon Sep 17 00:00:00 2001 From: Yegor Jbanov Date: Mon, 9 Mar 2020 09:32:00 -0700 Subject: [PATCH] use commit date instead of author date --- tools/clone_flutter.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/clone_flutter.sh b/tools/clone_flutter.sh index a4f49ce2110b1..cb9f4916bc965 100755 --- a/tools/clone_flutter.sh +++ b/tools/clone_flutter.sh @@ -30,7 +30,7 @@ fi # Get latest commit's time for the engine repo. # Use date based on local time otherwise timezones might get mixed. -LATEST_COMMIT_TIME_ENGINE=`git log -1 --date=local --format="%ad"` +LATEST_COMMIT_TIME_ENGINE=`git log -1 --date=local --format="%cd"` echo "Latest commit time on engine found as $LATEST_COMMIT_TIME_ENGINE" # Do rest of the task in the root directory