ArrayIndexOutOfBoundsException when building with msbuilder
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Symptoms
When bamboo executes a MSBuild plan the build log shows the following error;
1
2
3
4
Failed to execute the build 'MY-BUILD-42'
java.lang.ArrayIndexOutOfBoundsException: 1
at com.atlassian.bamboo.plugin.builder.nant.AbstractDotNetBuilder.getEnvironmentSetting(AbstractDotNetBuilder.java:360)
at com.atlassian.bamboo.command.Command.executeCommand(Command.java:61)
Cause
If the plan's builder configuration sets a variable like PATH=C:\bea\;%PATH%
the existing Path variable is overridden.
Resolution
Delete this variable from the build configuration and try re-running the plan.
Substitute
%PATH%
with ${system.PATH}
Was this helpful?