Re: new bug introduced by 'devel' commit 35bc7025c1db5078eb157eea7c0436754ac91aa3

2021-05-13 Thread Adjudicator Darren
‐‐‐ Original Message ‐‐‐ On Thursday, May 13, 2021 5:02 PM, Chet Ramey wrote: > On 5/13/21 10:31 AM, Adjudicator Darren wrote: > > > ‐‐‐ Original Message ‐‐‐ > > On Thursday, May 13, 2021 4:25 PM, Chet Ramey chet.ra...@case.edu wrote: > > > > >

Re: new bug introduced by 'devel' commit 35bc7025c1db5078eb157eea7c0436754ac91aa3

2021-05-13 Thread Adjudicator Darren
‐‐‐ Original Message ‐‐‐ On Thursday, May 13, 2021 4:25 PM, Chet Ramey wrote: > On 5/13/21 9:11 AM, Adjudicator Darren wrote: > > > What's the bug? this: > > It's a work in progress. > I would use the master branch but apparently there are certain old th

new bug introduced by 'devel' commit 35bc7025c1db5078eb157eea7c0436754ac91aa3

2021-05-13 Thread Adjudicator Darren
What's the bug? this: # if [[ "1" -eq 2 ]]; then echo ; fi bash: [[: \1: syntax error: operand expected (error token is "\1") # if [[ 1 -eq "2" ]]; then echo ; fi bash: [[: \2: syntax error: operand expected (error token is "\2") It works without any quotes though: # if [[ 1 -eq 2 ]]; then echo