Description
First of all: wow it works great in the CLI, this is going to save me a lot of time.
Is it possible to make it work in GitKraken as well? I have set the hook, and it is recognized by the client, but I need to type a commit message before I can click the commit button.
GitKraken then says that the hook exited with error code 127. In the logs I see this: /usr/bin/env 'node': file or folder doesn't exist
. When I execute /usr/bin/env node
in my terminal it works, so GitKraken seems to have some sort of other context.
I tried changing the first line of the hook to #!/home/lars/.nvm/versions/node/v16.18.1/bin/node
(since that is the full path to my node executable). GitKraken then says that the hook executed succesfully, but it didn't change the commit text that I needed to type to be able to click on the commit button...
What to do to fix this? Or what can I do to debug this further?