From d694d9408d2f84193bf6fe6390a14eb1a41e3e28 Mon Sep 17 00:00:00 2001
From: Bryan  BRANCOTTE <bryan.brancotte@pasteur.fr>
Date: Mon, 6 Nov 2023 10:01:37 +0100
Subject: [PATCH] "--append" not always recognized on mac

---
 source/user_guide/helm_settings.rst | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/user_guide/helm_settings.rst b/source/user_guide/helm_settings.rst
index 2f30ccf..24c0363 100644
--- a/source/user_guide/helm_settings.rst
+++ b/source/user_guide/helm_settings.rst
@@ -82,7 +82,7 @@ memory
 
     # Start watching
     while true; do 
-        docker stats --no-stream | grep -v "CONTAINER ID" | tee --append shinylogs/stats.txt; sleep 1; 
+        docker stats --no-stream | grep -v "CONTAINER ID" | tee -a shinylogs/stats.txt; sleep 1; 
     done
 
 In the following example, we used the application, reloaded the page and 
-- 
GitLab