commit 1ebaa0c4056366a8a90b3832f9176aacec323446
parent 653dabdb63822ad8df2eb42571dd073a47fc9bba
Author: Florian Dold <florian@dold.me>
Date: Thu, 22 Feb 2024 15:36:56 +0100
taler-terms-generator: fix incremental build check
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/taler-terms-generator b/contrib/taler-terms-generator
@@ -234,7 +234,7 @@ fi
# As a heuristic for incremental builds, we only check the text output file.
if [[ "$INCREMENTAL" -eq 1 ]]
then
- if [[ "$VERSION" -ot "${OUTPUT}/buildstamp" ]];
+ if [[ "${VERSION}.rst" -ot "${OUTPUT}/buildstamp" ]];
then
echo "Not rebuilding, input file $VERSION is older than $OUTPUT/buildstamp."
exit 0