We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This 'trick' was used to overwrite some variable with keyword value under some condition:
${variable} Run Keyword If ${something} ... Catenate ${variable} sed -i 's/substring/${OTHER}calc/' file.conf ; ... ELSE Set Variable ${variable}
While converting it to IF we end up with:
IF ${something} ${variable} Catenate ${variable} sed -i 's/substring/${OTHER}calc/' file.conf ; ELSE ${variable} Set Variable ${variable} END
while it could be just:
IF ${something} ${variable} Catenate ${variable} sed -i 's/substring/${OTHER}calc/' file.conf ; END
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This 'trick' was used to overwrite some variable with keyword value under some condition:
While converting it to IF we end up with:
while it could be just:
The text was updated successfully, but these errors were encountered: