• Kenichi Omichi's avatar
    Replace `false` with `exit 1` · 08dc0564
    Kenichi Omichi authored
    Some scripts contained `false` for returning 1 to callers instead of
    `exit 1` and that works like:
    
      $ false
      $ echo $?
      1
      $
    
    But that made confusion in a PR review process.
    So this replaces `false` with `exit 1` for long-term maintenance.
    08dc0564
verify-shellcheck.sh 6.47 KB