Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Preventing warning about missing project.yml. #936

Merged
merged 1 commit into from
Jan 6, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion phing/tasks/properties.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@
<property file="${phing.dir}/build.yml" override="true" logoutput="false"/>

<!-- Load the root project.yml file for this project. -->
<property file="${blt.config-files.project}" override="true" logoutput="${blt.verbose}"/>
<if>
<available file="${blt.config-files.project}" type="file"/>
<then>
<property file="${blt.config-files.project}" override="true" logoutput="${blt.verbose}"/>
</then>
</if>

<!-- Load the local project.local.yml file for this project. -->
<!--@todo Change this so that it is only loaded for local:* targets. -->
Expand Down