Changeset 1627 for trunk/build
- Timestamp:
- 06/17/08 14:57:16 (5 months ago)
- Files:
-
- trunk/build/stubbles/build.xml (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build/stubbles/build.xml
r1564 r1627 403 403 <echo>| Checking CS of source files |</echo> 404 404 <echo>----------------------------------</echo> 405 <php expression="realpath('.')" returnProperty="stubbles.base.dir.absolute"/> 405 406 <if> 406 407 <or> … … 410 411 <then> 411 412 <!-- normal slashes --> 412 <exec command="phpcs --standard=${stubbles.base.dir }/src/main/php/org/stubbles/codeSniffer/Stubbles ${stubbles.base.dir}/src/${check-style.path}/php/net/stubbles/${check-style.namespace}" passthru="true"/>413 <exec command="phpcs --standard=${stubbles.base.dir.absolute}/src/main/php/org/stubbles/codeSniffer/Stubbles ${stubbles.base.dir}/src/${check-style.path}/php/net/stubbles/${check-style.namespace}" passthru="true"/> 413 414 </then> 414 415 <elseif> … … 416 417 <then> 417 418 <!-- must be backslashes in first case or PHP_CodeSniffer doesn't find own sniffs --> 418 <exec command="phpcs --standard=${stubbles.base.dir }\src\main\php\org\stubbles\codeSniffer\Stubbles ${stubbles.base.dir}/src/${check-style.path}/php/net/stubbles/${check-style.namespace}" passthru="true"/>419 <exec command="phpcs --standard=${stubbles.base.dir.absolute}\src\main\php\org\stubbles\codeSniffer\Stubbles ${stubbles.base.dir}/src/${check-style.path}/php/net/stubbles/${check-style.namespace}" passthru="true"/> 419 420 </then> 420 421 </elseif>
