Repository: flex-utilities Updated Branches: refs/heads/develop b5dc2ed7c -> 3805cd922
somehow got a status=false with failuremessage = null. Not sure how, but don't crash if it happens again Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/3805cd92 Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/3805cd92 Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/3805cd92 Branch: refs/heads/develop Commit: 3805cd922cd2549d2ab6a65865633443fc3fc3ec Parents: b5dc2ed Author: Alex Harui <[email protected]> Authored: Mon Jun 9 12:50:10 2014 -0700 Committer: Alex Harui <[email protected]> Committed: Mon Jun 9 12:50:10 2014 -0700 ---------------------------------------------------------------------- installer/src/InstallApacheFlex.mxml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/3805cd92/installer/src/InstallApacheFlex.mxml ---------------------------------------------------------------------- diff --git a/installer/src/InstallApacheFlex.mxml b/installer/src/InstallApacheFlex.mxml index 0388f77..d9724c4 100644 --- a/installer/src/InstallApacheFlex.mxml +++ b/installer/src/InstallApacheFlex.mxml @@ -1491,7 +1491,8 @@ variables are not required because the locations of these pieces are known. { if (!Ant.currentAnt.project.status) { - log(Ant.currentAnt.project.failureMessage); + var msg:String = Ant.currentAnt.project.failureMessage; + log(msg ? msg : "no failure message provided"); if (currentStep > 0) updateActivityStep(stepLabels[currentStep - 1], StepItem.ERROR); }
