Hello i have a variable in Ant: ${env.BUILD_NUMBER}
And i wan't that this variable is always 6 characters long.
If not Ant should add trailing zeros.
1 should be 100000
39 should be 390000
5656 should be 565600
How is this possible using a Ant build script?
Thanks!