Re: [2/2] ant git commit: symlink and executable file selectors

2016-04-16 Thread Stefan Bodewig
On 2016-04-12, Antoine Levy Lambert wrote: > there is a command mklink on Windows [1] which is described as being > able to create symbolic links. Which is not available on Win7 - and even if it was, I'm not sure Java would detect the things as symlinks. I'll give it a try and we'll see what our

Re: [2/2] ant git commit: symlink and executable file selectors

2016-04-11 Thread Antoine Levy Lambert
Hello Stefan, there is a command mklink on Windows [1] which is described as being able to create symbolic links. There is also an API function CreateSymbolicLink [2]. Concerning executable files, it seems that the executable nature of a file depends upon its extension, see [3]. So maybe if we

Re: [2/2] ant git commit: symlink and executable file selectors

2016-04-09 Thread Stefan Bodewig
On 2016-04-09, wrote: > symlink and executable file selectors Two questions: (1) does anybody know how to write tests for either on Windows? I've currently only enabled antunit tests on Unix (at least that's what I wanted to do). (2) do we want to port it as optional task depending on Java7 fo