KittyKatt / screenFetch

Fetches system/theme information in terminal for Linux desktop screenshots.
GNU General Public License v3.0
3.84k stars 454 forks source link

Bash test nested incorrectly; leads to syntax error #802

Open bicobus opened 1 month ago

bicobus commented 1 month ago

Offending line: https://github.com/KittyKatt/screenFetch/blob/e2ca5ae907c7466c23b7286d11cb4a8b7763f1d1/screenfetch-dev#L3025

[ is an alias for test, as such it doesn't support logical OR operations. The line should be rewritten to use [[ instead.