I need to alter the build environment variable for a build step. However the current environment parameter only replaces existing environment variables.
Does anybody know how I can get buildbot to append to the PATH environment variable rather than replace:
my_return.addStep(ShellCommand(command=["qmake", "{0}.pro".format(pro_name)],
env={'PATH': qt_path}))