We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea2862d commit 8febda2Copy full SHA for 8febda2
bin/ncp-update-nc.d/update-nc.sh
@@ -142,12 +142,10 @@ cp nextcloud-old/config/config.php nextcloud/config/
142
####################
143
cp -raT nextcloud-old/themes/ nextcloud/themes/
144
145
-# copy old NCP apps
+# copy old NC apps
146
147
-for app in nextcloudpi previewgenerator notify_push; do
148
- if [[ -d nextcloud-old/apps/"${app}" ]]; then
149
- cp -r -L nextcloud-old/apps/"${app}" /var/www/nextcloud/apps/
150
- fi
+for app in nextcloud-old/apps/*; do
+ cp -r -L "${app}" /var/www/nextcloud/apps/
151
done
152
153
#false # test point
0 commit comments