Make sure wget looks for the certificates at the right place
authorKevin Ottens <kevin.ottens@nextcloud.com>
Tue, 11 Aug 2020 12:10:27 +0000 (14:10 +0200)
committerKevin Ottens (Rebase PR Action) <er-vin@users.noreply.github.com>
Wed, 12 Aug 2020 06:45:13 +0000 (06:45 +0000)
Might happen because we got too many copies of OpenSSL around

Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
admin/linux/build-appimage.sh

index fc8a773f9c7610cd3d3d7f67f732ea3e5450a95f..27ea2e7ec8d5f00f585c3f4c58880e254f46ae2b 100755 (executable)
@@ -86,7 +86,7 @@ cp -P -r /usr/lib/x86_64-linux-gnu/nss ./usr/lib/
 
 # Use linuxdeployqt to deploy
 cd /build
-wget -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
+wget --ca-directory=/etc/ssl/certs/ -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage"
 chmod a+x linuxdeployqt*.AppImage
 ./linuxdeployqt-continuous-x86_64.AppImage --appimage-extract
 rm ./linuxdeployqt-continuous-x86_64.AppImage