cancel
Showing results for 
Search instead for 
Did you mean: 

./AAAR_Extract.sh: line 53: [false: command not found

oliviera
Champ in-the-making
Champ in-the-making
I'm starting a new topic as the previous one is locked (1 month old)

./AAAR_Extract.sh: line 53: [false: command not found


Line 53: while ["$GET_PARENTS" != "true" -a "$GET_PARENTS" != "false"]; do


The problem is the missing <space> between [ and "$GET_PARENTS", ans also "false" and ]

I corrected it on my file and it's working fine Smiley Happy

Correct: while [ "$GET_PARENTS" != "true" -a "$GET_PARENTS" != "false" ]; do


Hope this helps
1 REPLY 1

fcorti
Elite Collaborator
Elite Collaborator
Thank you Oliviera!
I added the spaces in the sources for the next release. 😉