mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 02:11:01 +01:00
11 lines
359 B
Bash
11 lines
359 B
Bash
#!/bin/bash
|
|
|
|
if [ ! -d /data/config/www/nextcloud/apps/pdfannotate ]; then
|
|
CURRENT="$PWD"
|
|
cd /data/config/www/nextcloud/apps || exit
|
|
git clone https://gitlab.com/nextcloud-other/nextcloud-annotate pdfannotate
|
|
cd "$CURRENT" || exit
|
|
apk add --no-cache ghostscript >/dev/null
|
|
echo "Nextcloud annotate app added to Nextcloud app store"
|
|
fi
|