Skip to content

Commit

Permalink
(build) fix coveralls env var typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ferventcoder committed Feb 7, 2015
1 parent 7fb82c9 commit ac86134
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .build.custom/analyzers/opencover.cover.post.step
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@

<target name="run_normal_tasks">
<echo level="Warning" message="Uploading Code Coverage Results to Coveralls if ENV['COVERALS_REPO_TOKEN'] is set." />
<call target="run_coveralls" if="${environment::variable-exists('COVERALS_REPO_TOKEN')}" />
<call target="run_coveralls" if="${environment::variable-exists('COVERALLS_REPO_TOKEN')}" />
</target>

<target name="run_coveralls" if="${environment::variable-exists('COVERALS_REPO_TOKEN')}">
<target name="run_coveralls" if="${environment::variable-exists('COVERALLS_REPO_TOKEN')}">
<echo level="Warning" message="Running ${app.coveralls} --opencover '${dirs.codecoverage_results}${path.separator}${file.codecoverage_results}'" />
<exec program="${app.coveralls}"
workingdir="${dirs.codecoverage_results}"
Expand Down

0 comments on commit ac86134

Please sign in to comment.