Pipeline IF statement multiple conditions

Dmitry Ofitserov March 7, 2022

Hi guys,

I'm trying to use multiple conditions in pipeline IF statement but with no luck.

The purpose of it is to run some functionality only if repository variable is set to specific value and specific file exists in directory (or if the directory itself exists, or both of the conditions) , e.g:

if [ $BOOLEAN_VAR = 'TRUE' &&  -e "folder/file.xml" ]; then do something; fi
I've tried a few variations of the above condition but each time I get the "syntax error".
Did anyone use multiple conditions and can elaborate on how to do it ?
Thanks

1 answer

1 accepted

0 votes
Answer accepted
Mark C
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
March 8, 2022

Hi @Dmitry Ofitserov

Welcome to the community.

Similar to this community post, would it be possible for you to try to use double squared brackets and see if it works?
For example:

if [[ $BOOLEAN_VAR = 'TRUE' &&  -e "folder/file.xml" ]]; then do something; fi

Let me know how it goes.

Regards,
Mark C

Dmitry Ofitserov March 9, 2022

Thank you @Mark C 

The solution worked for me 

Like Mark C likes this
Mark C
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
March 9, 2022

Great! Glad to know it worked.

Regards,
Mark C

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events