buildsystem: use single = for consistency

This commit is contained in:
MilhouseVH
2018-04-02 10:09:11 +01:00
parent 7628290170
commit eefa6ebee4
3 changed files with 6 additions and 6 deletions

View File

@@ -57,8 +57,8 @@ get_yes_no()
{
local ans
read -p "Would you like to install the needed tools ? (y/n) " ans
[ "${ans,,}" == "y" ] && return 0
[ "${ans,,}" == "yes" ] && return 0
[ "${ans,,}" = "y" ] && return 0
[ "${ans,,}" = "yes" ] && return 0
return 1
}