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-07-13 20:26:42 +0300
committernachoparker <nacho@ownyourbits.com>2018-07-13 20:27:07 +0300
commitb81b3e6753f81fc14ad4fff153e9882b9dad183f (patch)
tree33cc9290add473de7b99a4477464b1b3437d7999
parent2619c46e84c0d65a68d164a2e2d499430925785b (diff)
fix ncc command repeating itselfv0.57.18
-rw-r--r--changelog.md4
-rw-r--r--ncp.sh2
-rwxr-xr-xupdate.sh2
3 files changed, 5 insertions, 3 deletions
diff --git a/changelog.md b/changelog.md
index 7ba2d313..670aa585 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,7 @@
-[v0.57.17](https://github.com/nextcloud/nextcloudpi/commit/ddae4df) (2018-07-03) armbian: fix image tag preventing updates
+[v0.57.18](https://github.com/nextcloud/nextcloudpi/commit/7c2457e) (2018-07-13) fix ncc command repeating itself
+
+[v0.57.17](https://github.com/nextcloud/nextcloudpi/commit/baa2fa2) (2018-07-03) armbian: fix image tag preventing updates
[v0.57.16](https://github.com/nextcloud/nextcloudpi/commit/1298bfe) (2018-06-27) SSH: fix root password in Raspbian
diff --git a/ncp.sh b/ncp.sh
index 2b49d058..ca9f1e94 100644
--- a/ncp.sh
+++ b/ncp.sh
@@ -31,7 +31,7 @@ install()
}
# add the ncc shortcut
- cat >> /usr/local/bin/ncc <<'EOF'
+ cat > /usr/local/bin/ncc <<'EOF'
#!/bin/bash
sudo -u www-data php /var/www/nextcloud/occ "$@"
EOF
diff --git a/update.sh b/update.sh
index 2af9a456..1b8b8012 100755
--- a/update.sh
+++ b/update.sh
@@ -208,7 +208,7 @@ rm -f /.ncp-image
}
# add the ncc shortcut
- cat >> /usr/local/bin/ncc <<'EOF'
+ cat > /usr/local/bin/ncc <<'EOF'
#!/bin/bash
sudo -u www-data php /var/www/nextcloud/occ "$@"
EOF