Skip to content

fix: mark all shell scripts as executable#28

Merged
locus313 merged 1 commit into
mainfrom
fix/script-executable-permissions
Jun 27, 2026
Merged

fix: mark all shell scripts as executable#28
locus313 merged 1 commit into
mainfrom
fix/script-executable-permissions

Conversation

@locus313

Copy link
Copy Markdown
Owner

Summary

All 19 shell scripts were stored in git with mode 100644 (non-executable). GitHub Actions runners check out the repository and execute scripts directly — without the executable bit, any action step calling a .sh file fails immediately with Permission denied.

Root cause

The scripts were never committed with chmod +x applied, so git stored them as regular files. This went unnoticed locally since the action.yml run: step could work around it, but direct execution as an action entry point requires the executable bit.

Fix

git update-index --chmod=+x applied to all 24 .sh files — mode changed from 100644 to 100755 for all of them.

GitHub Actions checks out the repository and runs scripts directly.
Without the executable bit set in git, runners get 'Permission denied'
when trying to execute any .sh file as an action step.

All 24 .sh files updated from mode 100644 to 100755.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@locus313 locus313 merged commit 5ae37b9 into main Jun 27, 2026
1 check passed
@locus313 locus313 deleted the fix/script-executable-permissions branch June 27, 2026 00:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant