From 5c01be98522b7e7594c31136a903feb993c1eed7 Mon Sep 17 00:00:00 2001 From: Syed Mishar Newaz Date: Sun, 23 Jul 2023 19:23:57 +0600 Subject: [PATCH] Update manual-upgrade.md shebang There was an exclamation (!) missing from shebang. As a result, execution of this script could result in unexpected behaviour Signed-off-by: Syed Mishar Newaz --- manual-upgrade.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual-upgrade.md b/manual-upgrade.md index 8a4975d8..65f67c98 100644 --- a/manual-upgrade.md +++ b/manual-upgrade.md @@ -12,7 +12,7 @@ The only way to fix this on your side is upgrading regularly (e.g. by enabling d 1. Run the following commands in order to reverse engineer the Nextcloud container: ```bash sudo docker pull assaflavie/runlike - echo '#/bin/bash' > /tmp/nextcloud-aio-nextcloud + echo '#!/bin/bash' > /tmp/nextcloud-aio-nextcloud sudo docker run --rm -v /var/run/docker.sock:/var/run/docker.sock assaflavie/runlike -p nextcloud-aio-nextcloud >> /tmp/nextcloud-aio-nextcloud sudo chown root:root /tmp/nextcloud-aio-nextcloud ```