Update 99-add_packages.sh

This commit is contained in:
Alexandre
2022-01-20 22:10:36 +01:00
committed by GitHub
parent 20df6df6ba
commit 216b4a4956

View File

@@ -1,10 +1,10 @@
#!/bin/bash
if [ -d /data/config/www/nextcloud/apps/pdfannotate ]; then
CURRENT=$PWD
CURRENT="$PWD"
cd /data/config/www/nextcloud/apps
git clone https://gitlab.com/nextcloud-other/nextcloud-annotate pdfannotate
cd $PWD
cd "$CURRENT"
apk add --no-cache ghostscript >/dev/null
echo "Nextcloud annotate app added to Nextcloud app store"
fi