On 16.12.2010 21:29, Steve Lessard wrote:
> I'm working on OS X and trying to use MonoDevelop's custom commands to copy 
> some
> files and fix the file permissions after the project is built. I've found that
> any custom command that makes use of wild cards will fail.  Is this expected
> behavior?
>
> Complete build log is below.
>
> -SteveL
>
> p.s. this sounds to me like the code that shells out to execute the custom
> commands isn't properly handling wildcard characters

Unix does not handle wildcards at all. If you want wildcards then
you should execute the commands using a shell, like this:

/bin/bash -c "ls *"

Robert

P.S.: MonoDevelop's list is over here: 
http://lists.ximian.com/mailman/listinfo/monodevelop-list

_______________________________________________
Mono-list maillist  -  Mono-list@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-list

Reply via email to