• Alessandro Rubini's avatar
    apply-dot-config: fix wrong sh syntax (unexposed bug) · 049e8b55
    Alessandro Rubini authored
    In sh, string comparison for equality is "=", not "==". Bash accepts
    either operator but suggests to use "=" for posix conformance.
    Our /bin/sh is currently busybox, which accepts "==" like bash, but
    if you use ash or dash it fails:
    
       $ CONFIG_FOO=y
       $ if [ "$CONFIG_FOO" = "y" ]; then echo ok; fi
       ok
       $ if [ "$CONFIG_FOO" == "y" ]; then echo ok; fi
       dash: 3: [: y: unexpected operator
    Signed-off-by: Alessandro Rubini's avatarAlessandro Rubini <rubini@gnudd.com>
    049e8b55
apply_dot-config 6.1 KB