You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By using the example of SH.DESIGN.Options in RNC CNES we should expect no error
Actual behavior
By using the example of SH.DESIGN.Options in RNC CNES we have an error SH.DESIGN.Options
In SH.DESIGN.Options LEX we have the following conditions to raise the SH.DESIGN.Options error:
if (!getopts || !getoptExtern || !help || !version || !helpLong || !versionLong)
but actually we think these conditions should be :
if ( (getopts && (!help || !version)) || (getoptExtern && (!helpLong || !versionLong)) )
Steps to reproduce behavior
Detection version
V3.0.1
The text was updated successfully, but these errors were encountered:
Expected behavior
By using the example of SH.DESIGN.Options in RNC CNES we should expect no error
Actual behavior
By using the example of SH.DESIGN.Options in RNC CNES we have an error SH.DESIGN.Options
In SH.DESIGN.Options LEX we have the following conditions to raise the SH.DESIGN.Options error:
if (!getopts || !getoptExtern || !help || !version || !helpLong || !versionLong)
but actually we think these conditions should be :
if ( (getopts && (!help || !version)) || (getoptExtern && (!helpLong || !versionLong)) )
Steps to reproduce behavior
Detection version
V3.0.1
The text was updated successfully, but these errors were encountered: