Replies: 1 comment
-
It looks like a decent workaround for now is to add another Something like this:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I'm using
hatch-build-scripts
to build a binary to package with my wheels. Unfortunately when it copies the resulting binary it doesn't copy the permission bits, so it loses its executable status. Is there a way to get that behaviour?Looking at the source, it seems like
copyfile
doesn't copy metadata, so a quick fix would be to switch tocopy
orcopy2
. Though I don't know much about this kind of thing in Python.Another option would be to have a hook for a command that I can run after the artifact has been copied in.
Am I missing anything here?
Beta Was this translation helpful? Give feedback.
All reactions