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>2016-08-30 16:03:10 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2016-08-30 16:03:10 +0300
commitfb259a2e84dfa4716326b40e1a55e80b10253d71 (patch)
treebb2c3fa06ae40fc540e73ba37b073cf2e9cab1f6 /build-release.sh
parentf573037aaeaeb24a5e8097739803e70514dabf10 (diff)
Added installation of .config files during the install process
Diffstat (limited to 'build-release.sh')
-rw-r--r--build-release.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/build-release.sh b/build-release.sh
index 466c84cd0..a9086f53c 100644
--- a/build-release.sh
+++ b/build-release.sh
@@ -128,6 +128,10 @@ for FN in "Duplicati/Library/Snapshots/bin/Release/SnapshotQuery.exe" "Duplicati
cp "${FN}" "${UPDATE_SOURCE}/alphavss/"
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 \;
+
+# Clean some unwanted build files
if [ -e "${UPDATE_SOURCE}/control_dir" ]; then rm -rf "${UPDATE_SOURCE}/control_dir"; fi
if [ -e "${UPDATE_SOURCE}/Duplicati-server.sqlite" ]; then rm "${UPDATE_SOURCE}/Duplicati-server.sqlite"; fi
if [ -e "${UPDATE_SOURCE}/Duplicati.debug.log" ]; then rm "${UPDATE_SOURCE}/Duplicati.debug.log"; fi