From d69e95d4226668959666df18001df12005601252 Mon Sep 17 00:00:00 2001 From: Joakim Persson Date: Thu, 30 Apr 2026 07:28:38 +0000 Subject: [PATCH] install.sh: set executable bit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The initial commit created install.sh with mode 0644, so a fresh clone (e.g. on tor-ms22) hit 'permission denied: ./install.sh' and needed a manual chmod +x or 'bash install.sh' workaround before first run. This is a pure permission change (same content hash); git tracks the execute bit in the tree, so this fixes it for every future clone. bin/mempalace-docs and bin/mempalace-session were already 0755 because they carried over from their original cli_utils commits — install.sh was new in the split-out commit and missed the +x that the write-path doesn't apply by default. --- install.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 install.sh diff --git a/install.sh b/install.sh old mode 100644 new mode 100755