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

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornachoparker <nacho@ownyourbits.com>2018-04-27 15:25:10 +0300
committernachoparker <nacho@ownyourbits.com>2018-04-27 15:25:10 +0300
commit7e2b72d1129cc32937056ed6205fd60ba9553a15 (patch)
tree93a48caf4216a8937b177a091ab3e35530672821 /install.sh
parent9a6d371f9ce08a4f5c911dba2fe77f87d9b3f389 (diff)
build: use certificates in wget
Diffstat (limited to 'install.sh')
-rw-r--r--install.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/install.sh b/install.sh
index 4cd5dbcf..b8e8b8dd 100644
--- a/install.sh
+++ b/install.sh
@@ -37,8 +37,7 @@ apt-get update
apt-get install --no-install-recommends -y wget ca-certificates sudo
rm -rf "$TMPDIR" && mkdir "$TMPDIR" && cd "$TMPDIR"
-wget -O- --no-check-certificate --content-disposition \
- https://github.com/nextcloud/nextcloudpi/archive/"$BRANCH"/latest.tar.gz \
+wget -O- --content-disposition https://github.com/nextcloud/nextcloudpi/archive/"$BRANCH"/latest.tar.gz \
| tar -xz \
|| exit 1
cd - && cd "$TMPDIR"/nextcloudpi-"$BRANCH"