Jenkins is complaining about syntax on a line I didn't change












1















I had a curl call in one of the pipeline steps which was working just fine:



stage("deploy") {
when {
environment ignoreCase: true, name: "DEPLOY_TO", value: "staging"
}
steps {
// copy files from dev to server
sh """rsync...

#....
/bin/cp .....


rm -Rf /tmp/${env.SITEID}docs/
# clear the caches
curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088""""


The problem started when I added an if conditional to that curl call in case that curl call failed:



stage("deploy") {
when {
environment ignoreCase: true, name: "DEPLOY_TO", value: "staging"
}
steps {
// copy files from dev to server
sh """rsync...

#....
/bin/cp .....


rm -Rf /tmp/${env.SITEID}docs/
# clear the caches
if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi"""


The error is now pointing to the line of code rm -Rf /tmp/${env.SITEID}docs/ but the confusion is that I didn't even changed that line of code!



The error message I get is the following:



ERROR: WorkflowScript: 119: illegal string body character after dollar sign;
solution: either escape a literal dollar sign "$5" or bracket the value expression "${5}" @ line 119, column 41.
rm -Rf /tmp/${env.SITEID}docs/


Any help is appreciated.










share|improve this question



























    1















    I had a curl call in one of the pipeline steps which was working just fine:



    stage("deploy") {
    when {
    environment ignoreCase: true, name: "DEPLOY_TO", value: "staging"
    }
    steps {
    // copy files from dev to server
    sh """rsync...

    #....
    /bin/cp .....


    rm -Rf /tmp/${env.SITEID}docs/
    # clear the caches
    curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088""""


    The problem started when I added an if conditional to that curl call in case that curl call failed:



    stage("deploy") {
    when {
    environment ignoreCase: true, name: "DEPLOY_TO", value: "staging"
    }
    steps {
    // copy files from dev to server
    sh """rsync...

    #....
    /bin/cp .....


    rm -Rf /tmp/${env.SITEID}docs/
    # clear the caches
    if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi"""


    The error is now pointing to the line of code rm -Rf /tmp/${env.SITEID}docs/ but the confusion is that I didn't even changed that line of code!



    The error message I get is the following:



    ERROR: WorkflowScript: 119: illegal string body character after dollar sign;
    solution: either escape a literal dollar sign "$5" or bracket the value expression "${5}" @ line 119, column 41.
    rm -Rf /tmp/${env.SITEID}docs/


    Any help is appreciated.










    share|improve this question

























      1












      1








      1








      I had a curl call in one of the pipeline steps which was working just fine:



      stage("deploy") {
      when {
      environment ignoreCase: true, name: "DEPLOY_TO", value: "staging"
      }
      steps {
      // copy files from dev to server
      sh """rsync...

      #....
      /bin/cp .....


      rm -Rf /tmp/${env.SITEID}docs/
      # clear the caches
      curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088""""


      The problem started when I added an if conditional to that curl call in case that curl call failed:



      stage("deploy") {
      when {
      environment ignoreCase: true, name: "DEPLOY_TO", value: "staging"
      }
      steps {
      // copy files from dev to server
      sh """rsync...

      #....
      /bin/cp .....


      rm -Rf /tmp/${env.SITEID}docs/
      # clear the caches
      if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi"""


      The error is now pointing to the line of code rm -Rf /tmp/${env.SITEID}docs/ but the confusion is that I didn't even changed that line of code!



      The error message I get is the following:



      ERROR: WorkflowScript: 119: illegal string body character after dollar sign;
      solution: either escape a literal dollar sign "$5" or bracket the value expression "${5}" @ line 119, column 41.
      rm -Rf /tmp/${env.SITEID}docs/


      Any help is appreciated.










      share|improve this question














      I had a curl call in one of the pipeline steps which was working just fine:



      stage("deploy") {
      when {
      environment ignoreCase: true, name: "DEPLOY_TO", value: "staging"
      }
      steps {
      // copy files from dev to server
      sh """rsync...

      #....
      /bin/cp .....


      rm -Rf /tmp/${env.SITEID}docs/
      # clear the caches
      curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088""""


      The problem started when I added an if conditional to that curl call in case that curl call failed:



      stage("deploy") {
      when {
      environment ignoreCase: true, name: "DEPLOY_TO", value: "staging"
      }
      steps {
      // copy files from dev to server
      sh """rsync...

      #....
      /bin/cp .....


      rm -Rf /tmp/${env.SITEID}docs/
      # clear the caches
      if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi"""


      The error is now pointing to the line of code rm -Rf /tmp/${env.SITEID}docs/ but the confusion is that I didn't even changed that line of code!



      The error message I get is the following:



      ERROR: WorkflowScript: 119: illegal string body character after dollar sign;
      solution: either escape a literal dollar sign "$5" or bracket the value expression "${5}" @ line 119, column 41.
      rm -Rf /tmp/${env.SITEID}docs/


      Any help is appreciated.







      jenkins jenkins-pipeline






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 2 at 19:01









      VaToVaTo

      1,41311740




      1,41311740
























          1 Answer
          1






          active

          oldest

          votes


















          1














          The problem is still in the line you modified:



          if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi


          Although the output line and column are incorrect, the body of the message is accurate. Note the message:




          illegal string body character after dollar sign;

          solution: either escape a literal dollar sign "$5" or bracket the value expression "${5}"




          This is because of the part with $( curl where that dollar sign is being interpreted as denoting a Groovy and/or Jenkins variable interpolated within a string. The two suggestions given in the error are based upon whether you meant that or not. If you meant that, then you need to bracket it like:



          ${( curl...}


          but, since you did not mean that and instead wanted a shell variable interpolation inside the string, you need the former suggestion and escape the $.



          Your resulting line appears like:



          if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi





          share|improve this answer
























          • Thank you sir for your comment. It was very well explained. You are right, I should've read the error message in more detail. Thank you again.

            – VaTo
            Jan 2 at 19:33












          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54011776%2fjenkins-is-complaining-about-syntax-on-a-line-i-didnt-change%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          The problem is still in the line you modified:



          if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi


          Although the output line and column are incorrect, the body of the message is accurate. Note the message:




          illegal string body character after dollar sign;

          solution: either escape a literal dollar sign "$5" or bracket the value expression "${5}"




          This is because of the part with $( curl where that dollar sign is being interpreted as denoting a Groovy and/or Jenkins variable interpolated within a string. The two suggestions given in the error are based upon whether you meant that or not. If you meant that, then you need to bracket it like:



          ${( curl...}


          but, since you did not mean that and instead wanted a shell variable interpolation inside the string, you need the former suggestion and escape the $.



          Your resulting line appears like:



          if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi





          share|improve this answer
























          • Thank you sir for your comment. It was very well explained. You are right, I should've read the error message in more detail. Thank you again.

            – VaTo
            Jan 2 at 19:33
















          1














          The problem is still in the line you modified:



          if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi


          Although the output line and column are incorrect, the body of the message is accurate. Note the message:




          illegal string body character after dollar sign;

          solution: either escape a literal dollar sign "$5" or bracket the value expression "${5}"




          This is because of the part with $( curl where that dollar sign is being interpreted as denoting a Groovy and/or Jenkins variable interpolated within a string. The two suggestions given in the error are based upon whether you meant that or not. If you meant that, then you need to bracket it like:



          ${( curl...}


          but, since you did not mean that and instead wanted a shell variable interpolation inside the string, you need the former suggestion and escape the $.



          Your resulting line appears like:



          if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi





          share|improve this answer
























          • Thank you sir for your comment. It was very well explained. You are right, I should've read the error message in more detail. Thank you again.

            – VaTo
            Jan 2 at 19:33














          1












          1








          1







          The problem is still in the line you modified:



          if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi


          Although the output line and column are incorrect, the body of the message is accurate. Note the message:




          illegal string body character after dollar sign;

          solution: either escape a literal dollar sign "$5" or bracket the value expression "${5}"




          This is because of the part with $( curl where that dollar sign is being interpreted as denoting a Groovy and/or Jenkins variable interpolated within a string. The two suggestions given in the error are based upon whether you meant that or not. If you meant that, then you need to bracket it like:



          ${( curl...}


          but, since you did not mean that and instead wanted a shell variable interpolation inside the string, you need the former suggestion and escape the $.



          Your resulting line appears like:



          if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi





          share|improve this answer













          The problem is still in the line you modified:



          if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi


          Although the output line and column are incorrect, the body of the message is accurate. Note the message:




          illegal string body character after dollar sign;

          solution: either escape a literal dollar sign "$5" or bracket the value expression "${5}"




          This is because of the part with $( curl where that dollar sign is being interpreted as denoting a Groovy and/or Jenkins variable interpolated within a string. The two suggestions given in the error are based upon whether you meant that or not. If you meant that, then you need to bracket it like:



          ${( curl...}


          but, since you did not mean that and instead wanted a shell variable interpolation inside the string, you need the former suggestion and escape the $.



          Your resulting line appears like:



          if [[ $( curl -sS -X POST "http://www.xxxxxxxx.net/myscript.php?api_key=sdfsdfsdfe&site_id=088" | jq -r .debug_info.id_info) != " cache cleared successfuly" ]]; then exit 255; fi






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Jan 2 at 19:16









          Matt SchuchardMatt Schuchard

          7,47622241




          7,47622241













          • Thank you sir for your comment. It was very well explained. You are right, I should've read the error message in more detail. Thank you again.

            – VaTo
            Jan 2 at 19:33



















          • Thank you sir for your comment. It was very well explained. You are right, I should've read the error message in more detail. Thank you again.

            – VaTo
            Jan 2 at 19:33

















          Thank you sir for your comment. It was very well explained. You are right, I should've read the error message in more detail. Thank you again.

          – VaTo
          Jan 2 at 19:33





          Thank you sir for your comment. It was very well explained. You are right, I should've read the error message in more detail. Thank you again.

          – VaTo
          Jan 2 at 19:33




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54011776%2fjenkins-is-complaining-about-syntax-on-a-line-i-didnt-change%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          MongoDB - Not Authorized To Execute Command

          in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

          How to fix TextFormField cause rebuild widget in Flutter