Hi Hugo:
I noticed your recent change as below. It will cause bug
https://issues.apache.org/jira/browse/CLOUDSTACK-1304 that I have fixed some
days ago
be141f6e (Hugo Trippaers 2013-03-01 08:22:40 +0100 271)
<copy todir="${basedir}/target/generated-webapp/WEB-INF/classes/scripts">
be141f6e (Hugo Trippaers 2013-03-01 08:22:40 +0100 272)
<fileset dir="${basedir}/../scripts" />
be141f6e (Hugo Trippaers 2013-03-01 08:22:40 +0100 273)
</copy>
my fixes basically does:
<exec executable="cp">
<arg value="-r" />
<arg value="${basedir}/../scripts" />
<arg
value="${basedir}/target/generated-webapp/WEB-INF/classes/scripts" />
</exec>
Is there any special reason you changed it back? Thank you