The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Pipeline IF statement multiple conditions

Dmitry Ofitserov
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
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

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

Post a new question

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
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
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

TAGS
AUG Leaders

Atlassian Community Events