Skip to content

Commit

Permalink
nc-update-nc: ncp apps might not exist
Browse files Browse the repository at this point in the history
Signed-off-by: nachoparker <[email protected]>
  • Loading branch information
nachoparker committed Dec 1, 2020
1 parent 7afdc0f commit 35c0d96
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion bin/ncp-update-nc
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,11 @@ cp -raT nextcloud-old/themes/ nextcloud/themes/

# copy old NCP apps
####################
cp -r nextcloud-old/apps/{nextcloudpi,previewgenerator} /var/www/nextcloud/apps/
for app in nextcloudpi previewgenerator; do
if [[ -d nextcloud-old/apps/"${app}" ]]; then
cp -r nextcloud-old/apps/"${app}" /var/www/nextcloud/apps/
fi
done

#false # test point

Expand Down
6 changes: 4 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@

[v1.32.0](https://github.com/nextcloud/nextcloudpi/commit/3d6f3d4) (2020-11-24) upgrade to NC20.0.2
[v1.32.1](https://github.com/nextcloud/nextcloudpi/commit/b507966) (2020-11-30) nc-update-nc: ncp apps might not exist

[v1.31.0](https://github.com/nextcloud/nextcloudpi/commit/ab9184c) (2020-10-19) upgrade to NC19.0.4
[v1.32.0](https://github.com/nextcloud/nextcloudpi/commit/7afdc0f) (2020-11-24) upgrade to NC20.0.2

[v1.31.0 ](https://github.com/nextcloud/nextcloudpi/commit/ab9184c) (2020-10-19) upgrade to NC19.0.4

[v1.30.1 ](https://github.com/nextcloud/nextcloudpi/commit/9450613) (2020-10-20) nc-info: fixed api change for portchecker (#1194)

Expand Down

0 comments on commit 35c0d96

Please sign in to comment.