This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-compiler.git
commit bb621902f0787c10fd1c6e90aa8041f02db6d30e Author: Josh Tynjala <[email protected]> AuthorDate: Mon Apr 14 13:41:06 2025 -0700 debugger: consistent build.number/env.BUILD_NUMBER usage in Ant build with other Java modules --- debugger/build.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/debugger/build.xml b/debugger/build.xml index bdfb834fa..e0a6acafe 100644 --- a/debugger/build.xml +++ b/debugger/build.xml @@ -22,9 +22,9 @@ <property file="../build.properties" /> <!-- label is set by CruiseControl script based on P4 label incrementer --> - <condition property="build.number" value="${label}" else="0"> - <isset property="label" /> - </condition> + <condition property="build.number" value="${env.BUILD_NUMBER}"> + <isset property="env.BUILD_NUMBER"/> + </condition> <path id="classpath"> <fileset dir="${compiler.generated.lib}" includes="${jar.dependencies}" />
