On formatting #2301
-
Hi everyone, I was trying to create a MWE to file a bug where my generated code has some deleted portions, but for some reason it fails to work. I guess it is a dumb mistake, so I'm posting it as a general question. This is the script:
The 'sed' part is the one that eats code in my actual code, but I can't test it here as it fails to compile:
Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @nabw , answering your question since no one answered. I think the issue is that you need to escape backslash characters in your task script, so every The error message you got is vague because it only points to the process in which the error occurred. Unfortunately this kind of error is common, but it usually means there is a syntax error within the process or config block. |
Beta Was this translation helpful? Give feedback.
Hi @nabw , answering your question since no one answered. I think the issue is that you need to escape backslash characters in your task script, so every
\
should be\\
.The error message you got is vague because it only points to the process in which the error occurred. Unfortunately this kind of error is common, but it usually means there is a syntax error within the process or config block.