aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/common2
-rwxr-xr-xscripts/jobs/validate/junit2
-rwxr-xr-xscripts/jobs/validate/partest2
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/common b/scripts/common
index c938d342f..77da64d83 100755
--- a/scripts/common
+++ b/scripts/common
@@ -10,7 +10,7 @@ update() {
(git fetch "https://github.com/$1/$2.git" $4 && git checkout -fq FETCH_HEAD) #|| git checkout -fq $4 # || fallback is for local testing on tag
git reset --hard
echo updated $1/$2:$4 under $3. Last commits:
- git log --pretty=format:"%h - %an, %ar : %s" -n 10 # show last commits
+ git log --pretty=format:"%h - %an, %aD : %s" -n 10 # show last commits
cd -
}
diff --git a/scripts/jobs/validate/junit b/scripts/jobs/validate/junit
index ec42696a4..cf9b49c33 100755
--- a/scripts/jobs/validate/junit
+++ b/scripts/jobs/validate/junit
@@ -4,6 +4,6 @@ baseDir=${WORKSPACE-`pwd`}
scriptsDir="$baseDir/scripts"
. $scriptsDir/common
-git log --pretty=format:"%h - %an, %ar : %s" -n 10
+git log --pretty=format:"%h - %an, %aD : %s" -n 10
update DarkDimius scala scala-scala dotty-library
sbt $sbtArgs update compile test
diff --git a/scripts/jobs/validate/partest b/scripts/jobs/validate/partest
index 02a432703..24dd34c4b 100755
--- a/scripts/jobs/validate/partest
+++ b/scripts/jobs/validate/partest
@@ -4,7 +4,7 @@ baseDir=${WORKSPACE-`pwd`}
scriptsDir="$baseDir/scripts"
. $scriptsDir/common
-git log --pretty=format:"%h - %an, %ar : %s" -n 10
+git log --pretty=format:"%h - %an, %aD : %s" -n 10
sbt $sbtArgs update compile "partest-only run --show-diff --verbose"