Re: how to run applescript from Jenkins?

2013-05-31 Thread David Burson
Hi Pete, When I run: comm -3 (declare | sort) (declare -f | sort) from a terminal, it works fine, but when I run it from Jenkins' Execute shell Command, I get: syntax error near unexpected token `(' I looked at the man page for comm and I'm still lost. Any ideas? Thanks, David On Friday,

Re: how to run applescript from Jenkins?

2013-05-31 Thread Pete Akey
That's disappointing. I just tried it again on my install and it works just fine. Try the ol' printenv command instead. They both work for me. Pete On May 31, 2013, at 2:00 PM, David Burson david.bur...@gmail.com wrote: Hi Pete, When I run: comm -3 (declare | sort) (declare -f | sort)

Re: how to run applescript from Jenkins?

2013-05-28 Thread Pete Akey
I would print all of your environment variables from the command line as your jenkins user, then print them all from bash shell within jenkins and compare the two. They should be different because of the JVM versus the bash environment. From CLI: comm -3 (declare | sort) (declare -f | sort)

how to run applescript from Jenkins?

2013-05-24 Thread David Burson
Hi, I've spent a couple days now trying to figure out why our build script runs fine from the command line, but gets execution error: An error of type -10810 has occurred. (-10810) when Jenkins runs it. The problem is a bit of Applescript we run towards the end of our script. When I simply