From ae4d97f9a58beb79ef0315d6e07faef40aa1e153 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 14 Oct 2015 11:02:59 +0200 Subject: [PATCH] Do not publish .buildinfo files These build artefacts do not need to be published, remove them. Change-Id: I92e575cd8dce7d2906a0c3b9869a52bb0e591812 --- tools/build-rst.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/build-rst.sh b/tools/build-rst.sh index 5861ccc0ea..e102b15567 100755 --- a/tools/build-rst.sh +++ b/tools/build-rst.sh @@ -105,5 +105,7 @@ else if [ "$TARGET" != "" ] ; then mkdir -p publish-docs/$TARGET rsync -a $BUILD_DIR/ publish-docs/$TARGET/ + # Remove unneeded build artefact + rm -f publish-docs/$TARGET/.buildinfo fi fi