2021-06-03 02:37:05 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
2018-02-23 03:53:12 -05:00
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2012-06-28 21:39:47 -04:00
|
|
|
#
|
2021-06-03 02:37:05 -04:00
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
#
|
2016-06-27 00:56:38 -04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
2021-06-03 02:37:05 -04:00
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
2020-09-14 19:50:58 -04:00
|
|
|
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
2018-02-23 03:53:12 -05:00
|
|
|
#
|
|
|
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
|
|
|
# information regarding copyright ownership.
|
2012-04-27 00:03:19 -04:00
|
|
|
|
2023-10-26 07:24:51 -04:00
|
|
|
ps=$(git log -1 --date=raw --pretty=format:%ad -- doc/arm/Bv9ARM.pdf | awk '{print $1;}')
|
|
|
|
|
for f in doc/arm/*.html; do
|
|
|
|
|
ts=$(git log -1 --date=raw --pretty=format:%ad -- $f | awk '{print $1;}')
|
|
|
|
|
if test ${ts:-0} -gt ${ps:-0}; then
|
|
|
|
|
echo commit needed.
|
|
|
|
|
fi
|
2012-04-26 22:26:23 -04:00
|
|
|
done
|