diff options
author | Caolán McNamara <caolanm@redhat.com> | 2021-08-16 11:16:49 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2021-08-16 12:23:54 +0200 |
commit | 017a96aeb8f597de0f739fa8ba29dc56a28c9c0c (patch) | |
tree | 34519051a37e17a5f62c4ad6847e6aad37229c80 /bin | |
parent | d1ca1f6fef89e6500ca0743e18b8f62d197bf600 (diff) |
ofz: log with date -u
Change-Id: I9e85ee0f98c3b7cfab15db5e93f65a053996bf00
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/120534
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/oss-fuzz-build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/oss-fuzz-build.sh b/bin/oss-fuzz-build.sh index 7e77c67497a4..efc317f7bf91 100755 --- a/bin/oss-fuzz-build.sh +++ b/bin/oss-fuzz-build.sh @@ -5,7 +5,7 @@ if [ -z "${OUT}" ] || [ -z "${SRC}" ] || [ -z "${WORK}" ]; then exit 1 fi -echo start at `date` +echo start at `date -u` #shuffle CXXFLAGS -stdlib=libc++ arg into CXX as well because we use #the CXX as the linker and need to pass -stdlib=libc++ to build @@ -59,4 +59,4 @@ cp $SRC/*.dict $OUT #options files cp $SRC/libreoffice/vcl/workben/*.options $OUT -echo end at `date` +echo end at `date -u` |