Replies: 1 comment 9 replies
-
That sounds like a bug. We will investigate! |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to package an application. I start with a directory containing all the files needed. There are some platform specific subdirectories (eg. windows-x86_64, linux-x86_64, etc) which I only want distributed for the specific platform. So my thought is to add the directory to inputs and use remap to exclude the platform specific ones and then have these platform specific directories added as inputs for those machines.
My problem though is specifying the remap patterns to exclude these directories. Taking the windows-x86_64 directory as an example. If I give the pattern "-windows-x86_64/" in the remap then windows-x86_64 is still being included. The closest I can get is giving the pattern "-windows?x86_64/" which successfully excludes the directory.
Whilst using a wildcard to match the - works, it feels wrong as I cannot specifically match a path, the wildcard may wrongly pick up other matches.
So how should I match a - in a remap pattern?
Beta Was this translation helpful? Give feedback.
All reactions