Open aheimel opened 2 years ago
Using this option this error appears: /usr/bin/keychain: line 1166: [: =: unary operator expected
/usr/bin/keychain: line 1166: [: =: unary operator expected
As a workaround 1166 if [ $h = "$1" ]; then
1166 if [ $h = "$1" ]; then
can be changed to 1166 if [ "$h" = "$1" ]; then
1166 if [ "$h" = "$1" ]; then
Using this option this error appears:
/usr/bin/keychain: line 1166: [: =: unary operator expected
As a workaround
1166 if [ $h = "$1" ]; then
can be changed to
1166 if [ "$h" = "$1" ]; then