On Fri, 2002-09-27 at 21:45, Jennifer Moter wrote: > I'm having problems making a shell script executable: > <chmod file="${stage.tomcat.home}/bin" perm="ugo+rx" includes="*.sh"/> >
If you are trying to change the permissions on the contents of a directory your <chmod> target should look like this: <chmod dir="${stage.tomcat.home}/bin" perm="ugo+rx" includes="*.sh"/> ~~~ Your example was changing the permissions of the ${stage.tomcat.home}/bin directory itself, rather than the contents. Jesse -- Jesse Stockall [EMAIL PROTECTED] -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>