From d706f226de2c0f271b8710dd2bdb90af4fd1f730 Mon Sep 17 00:00:00 2001 From: Saksham Das Date: Thu, 6 Aug 2026 07:13:42 -0400 Subject: [PATCH] Fix executable bit on scripts/*.sh, tracked as non-executable since commit auto-deploy.sh only ever worked because someone chmod +x'd it directly on the server after cloning, outside git - a fix that lived nowhere git could see. A `git checkout --` to that file (recovering from an unrelated direct edit) silently restored the tracked 644 mode, breaking the deploy timer with "Permission denied" until caught via journalctl. bootstrap-env.sh had the identical latent bug, just never triggered since it's only ever run manually. Co-Authored-By: Claude Sonnet 5 --- scripts/auto-deploy.sh | 0 scripts/bootstrap-env.sh | 0 2 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 scripts/auto-deploy.sh mode change 100644 => 100755 scripts/bootstrap-env.sh diff --git a/scripts/auto-deploy.sh b/scripts/auto-deploy.sh old mode 100644 new mode 100755 diff --git a/scripts/bootstrap-env.sh b/scripts/bootstrap-env.sh old mode 100644 new mode 100755