Submit and vote on feature ideas.

Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.

How many variables can be passed to bitbucket script from jenkins

Options
vparasoft
vparasoft Posts: 1

Hi Have a build(Execute shell) script on jenkins that calls like this
** whoami
cd /var/lib/jenkins/workspace/TEST/scripts
bash deploy.sh $ENV $HST $CMP_BLD $VER $CA $CB $CC $A1 $A2 $B1 $B2 $C1 $C2**

But when running this job , I am only getting the values till A1 and A2 , and rest of the variables are getting wrong values to it, when I ran this job.

Answers

  • Matt Love
    Matt Love Posts: 92 admin
    Options

    Check that the value substituted in for $A2 doesn't have any special characters that would terminate the command line, such as ; | < >. There should be no limit on how many variables you can pass to the script, but the total length of the command line will be limited by the operating system.