Skip to content
This repository has been archived by the owner on Jan 10, 2020. It is now read-only.

Commit

Permalink
Don't fail on optional server targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
reid committed Oct 20, 2010
1 parent 3581ab5 commit 988d49d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions componentbuild/shared/targets.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
</not>
<then>
<echo level="info">Attempting to start NodeJS app at: ${src}</echo>
<exec executable="node" spawn="true">
<exec executable="node" spawn="true" failonerror="false">
<arg value="${src}"/>
</exec>
<!-- Don't fail if node doesn't exist, fails to start, etc.
Expand All @@ -66,7 +66,7 @@
</not>
<then>
<echo level="info">Attempting to start YUI Compressor server.</echo>
<java classname="com.yahoo.platform.yui.compressor.Bootstrap" fork="true" spawn="true">
<java classname="com.yahoo.platform.yui.compressor.Bootstrap" fork="true" spawn="true" failonerror="false">
<arg line="--server"/>
<arg line="${yuicompressor.port}"/>
<arg line="${yuicompressor.js.args}"/>
Expand Down

0 comments on commit 988d49d

Please sign in to comment.