Skip to content

Fix: Make husky pre-commit hook executable#5788

Merged
ginna-baker merged 1 commit intomainfrom
fix/make-pre-commit-hook-executable
Feb 23, 2026
Merged

Fix: Make husky pre-commit hook executable#5788
ginna-baker merged 1 commit intomainfrom
fix/make-pre-commit-hook-executable

Conversation

@ginna-baker
Copy link
Copy Markdown
Collaborator

@ginna-baker ginna-baker commented Feb 19, 2026

Before:

  • pre-commit hook was not running because it wasn't executable

Now:

  • pre-commit hook runs

Explanation of the new permissions:

The six-digit code 100755 is broken down as follows:

  • 100 (leading digits): This is a file type identifier used internally by Git (and related POSIX systems). It signifies a regular file as opposed to other types like symbolic links (120).

= 755 (last three digits): This is the standard Unix permission mode (equivalent to running chmod 755 filename in a terminal). Each digit represents the permissions for a different class of user, calculated by adding values for read (4), write (2), and execute (1) permissions:
7 (owner): Read (4) + Write (2) + Execute (1) = Full permissions.
5 (group): Read (4) + Execute (1) = Read and execute only (cannot alter).
5 (others/public): Read (4) + Execute (1) = Read and execute only (cannot alter).

@gemini-code-assist
Copy link
Copy Markdown
Contributor

Note

Gemini is unable to generate a summary for this pull request due to the file types involved not being currently supported.

@ginna-baker ginna-baker merged commit 51207c1 into main Feb 23, 2026
7 checks passed
@ginna-baker ginna-baker deleted the fix/make-pre-commit-hook-executable branch February 23, 2026 18:59
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.

2 participants