This message was deleted.
# puppet-enterprise
s
This message was deleted.
b
In git, the the executeable bit set for the script?
can you show the script?
t
The following works on windows and linux/mac os:
Copy code
git update-index --chmod=+x <file>
👍 1
Please be aware that git also stores file mode.
t
This doesn't appear to be git issue. I ran a git update-index --chmod=+x and committed. Nothing changed.
b
was it executeable before in git?
t
looks like there was .git/config in the repo that had the file mode set to false. I just changed it to true.
Copy code
[core]
        repositoryformatversion = 0
        filemode = false
        bare = false
        logallrefupdates = true
        ignorecase = true
That seems to have fixed the issue after all. thanks #tuxmea