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:
Diffstat (limited to 'build-release.sh')
-rw-r--r--build-release.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/build-release.sh b/build-release.sh
index f92bdf4a2..0a8bd6275 100644
--- a/build-release.sh
+++ b/build-release.sh
@@ -161,6 +161,13 @@ for FN in Duplicati/Library/Snapshots/bin/Release/AlphaVSS.*.dll; do
cp "${FN}" "${UPDATE_SOURCE}/alphavss/"
done
+# Fix for some support libraries not being picked up
+for BACKEND in Duplicati/Library/Backend/*; do
+ if [ -d "${BACKEND}/bin/Release/" ]; then
+ cp "${BACKEND}/bin/Release/"*.dll "${UPDATE_SOURCE}"
+ fi
+done
+
# Install the assembly redirects for all Duplicati .exe files
find "${UPDATE_SOURCE}" -type f -name Duplicati.*.exe -maxdepth 1 -exec cp Installer/AssemblyRedirects.xml {}.config \;