Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2017-06-04 00:09:32 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2017-06-04 00:09:32 +0300
commit35862c97404b8c4759394abf86d9ec08523fdd18 (patch)
tree42c0c5576d75c6904838448d3bff02e95b3c839a /build-release.sh
parent104a6614bfea9eda1a1e67a9417b2dec0acd9cec (diff)
Improved the build to exclude the `.xml`. files some libraries provide
Diffstat (limited to 'build-release.sh')
-rw-r--r--build-release.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/build-release.sh b/build-release.sh
index 7db20720f..0f4b84753 100644
--- a/build-release.sh
+++ b/build-release.sh
@@ -178,6 +178,9 @@ done
rm -rf "${UPDATE_SOURCE}/"*.mdb;
rm -rf "${UPDATE_SOURCE}/"*.pdb;
+# Remove all library docs files
+rm -rf "${UPDATE_SOURCE}/"*.xml;
+
# Remove all .DS_Store and Thumbs.db files
find . -type f -name ".DS_Store" | xargs rm -rf
find . -type f -name "Thumbs.db" | xargs rm -rf