[Mono-list] MonoDevelop custom commands

Robert Jordan robertj at gmx.net
Thu Dec 16 17:43:23 EST 2010


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



More information about the Mono-list mailing list