Files
Iris/mopidy_iris
Yannick Schinko 683ca69b7d Fix checking the boolean flag
``[[ $flag ]]`` checks if the variable is not empty. Not if it's true or false. Which means it will always succeed, because both possible values (``true`` and ``false``) are not empty.

An alternative would be ``[[ "$flag" = "true" ]]``.

Fixes some points mentioned in #489. Doesn't address changing `pip` to `pip3` (or maybe even ``python3 -m pip``) or the missing detection of the version number.
2020-02-10 10:26:28 +01:00
..
2020-02-06 10:16:47 +13:00
2020-02-06 10:12:28 +13:00
2020-02-07 08:08:21 +13:00
2020-02-03 16:14:04 +13:00
2020-02-10 10:26:28 +01:00