Hi All
We have build script which sets a doskey for certain commands.
Jenkins somehow is not able to recognize doskey:
Problem is easily reproducible,
*Script: foo.bat*
doskey d=dir
===
*Jenkins : Execute Windows batch command*
^
Hi, can you please point me to any doc related to using the unarchive step
Thanks
--
You received this message because you are subscribed to the Google Groups
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to jenkinsci-users+unsubscr...@g
I want to use a list of nodes to launch a command on specific nodes, so I
tried this:
for (node_name in all_nodes) {
node(node_name) {
echo 'My name is ' + node_name
}
}
This works for the first node in "all_nodes" but then fails after that. Is
there a better way to do this?
-