JacobDev1/xl-converter

Linux installer does not work

frague59 opened this issue · 1 comments

Hi,

The linux installer does not work, due to a mistake in the install.sh script

install.sh: line 64 : [: == : unary operator expected

To fix it, just on line 64:

     if [ $choice == "1" ]; then

by

     if [ $choice = "1" ]; then

Save, installs runs now...

Hi,

thanks for pointing this out. The fix will appear in the next update.

The installer worked on all distros I've tested, so I haven't noticed it up until now.

If anyone is facing this issue, wrap $choice in double quotes.

if [ "$choice" == "1" ]; then