Skip to content

Commit

Permalink
Fix for Azure libraries missing from build packages.
Browse files Browse the repository at this point in the history
This fixes #2668
  • Loading branch information
kenkendk committed Sep 8, 2017
1 parent 9f3e67a commit a3dd2d1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 \;

Expand Down

0 comments on commit a3dd2d1

Please sign in to comment.