Use variables instead of literal values: (#7531)

- there is no need to compare two string literals
This commit is contained in:
Emily Grace Seville
2022-01-29 17:58:41 -08:00
committed by GitHub
parent 9ad2a08a73
commit c10199cd1a

View File

@@ -21,11 +21,11 @@
- Check whether two strings are equal:
`if {{string}} == {{string}} ({{echo Condition is true}})`
`if %{{variable}}% == {{string}} ({{echo Condition is true}})`
- Check whether two strings are equal without respecting letter case:
`if /i {{string}} == {{string}} ({{echo Condition is true}})`
`if /i %{{variable}}% == {{string}} ({{echo Condition is true}})`
- Check whether a file exist: