From 7c8b9c454a4c7fc4865e5d62777d5567829f5e4b Mon Sep 17 00:00:00 2001 From: szaimen Date: Fri, 21 Jan 2022 19:09:44 +0100 Subject: [PATCH] fix uname command Signed-off-by: szaimen --- Containers/nextcloud/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/nextcloud/start.sh b/Containers/nextcloud/start.sh index 8b9c315c..33171688 100644 --- a/Containers/nextcloud/start.sh +++ b/Containers/nextcloud/start.sh @@ -12,7 +12,7 @@ if ! bash /entrypoint.sh; then fi # Correctly set CPU_ARCH for notify_push -export CPU_ARCH="$(uname -p)" +export CPU_ARCH="$(uname -m)" if [ -z "$CPU_ARCH" ]; then echo "Could not get processor architecture. Exiting." exit 1