Unsubscribe

2020-06-01 Thread CFouts

Re: Strategy for optionally excluding a named method parameter?

2020-04-25 Thread CFouts
It’s doing what you programmed it to do. You’re doing a “println” on the first arg (args.one), then a print on the second arg (args.two. So on your first 2 calls… f(one: “string”, two: false), prints string (the line fieed in println) false (no linefeed) then f(one:

Re: handling shell pipelines in Jenkins 2.164.3

2020-02-17 Thread CFouts
The clearmake command is a shell command too correct? Try this syntax sh “””    your commands here “”” You will have to escape at least the the “$” symbols. Chris From: Dimitar Vassilev Reply-To: Date: Monday, February 17, 2020 at 11:13 AM To: Subject: handling shell pipelines