Hi!

On Mon, Apr 25, 2016 at 4:43 PM, honas grael <[email protected]> wrote:
> I've got a Visual Basic Shell script that is used during a build. Its not an
> executable, I'd like to call it from one of the buildsteps and I'm not sure
> how this is done.
> Anyone used .vbs files from a build step?
> What should I be aware of?

You need to use 'cscript.exe' interpreter to start VBS files on Windows:

    f.addStep(steps.ShellCommand(command=["cscript.exe",
"path/to/your_script.vbs"]))

--
Vladimir Rutsky
_______________________________________________
users mailing list
[email protected]
https://lists.buildbot.net/mailman/listinfo/users

Reply via email to