From 72c7da5765eafff10c9b0d53e17457c031f66ec1 Mon Sep 17 00:00:00 2001 From: chrome-storm-c442 Date: Mon, 2 Mar 2026 06:29:14 -0500 Subject: [PATCH] =?UTF-8?q?fix:=20install.sh=20=E2=80=94=20ignore=20chmod?= =?UTF-8?q?=20error=20on=20existing=20dirs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 --- tools/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/install.sh b/tools/install.sh index 90ba7e6..13bd77b 100644 --- a/tools/install.sh +++ b/tools/install.sh @@ -124,7 +124,7 @@ done step "3/5 Создание директорий" mkdir -p "$CONN_DIR" "$COMMANDS_DIR" -chmod 700 "$CONN_DIR" +chmod 700 "$CONN_DIR" 2>/dev/null || true ok "$CONN_DIR" ok "$COMMANDS_DIR"