Branch: refs/heads/master Home: https://github.com/ngircd/ngircd Commit: 804c2403203258ba8b9bf869be3f9ef057c2d39a https://github.com/ngircd/ngircd/commit/804c2403203258ba8b9bf869be3f9ef057c2... Author: Alexander Barton alex@barton.de Date: 2016-10-21 (Fri, 21 Oct 2016)
Changed paths: M autogen.sh M contrib/ngindent M contrib/platformtest.sh
Log Message: ----------- autogen.sh, ngindent, platformtest.sh: Fix warnings of "shellcheck"
- SC2006: Use $(..) instead of legacy `..`. - SC2015: Note that A && B || C is not if-then-else. C may run when A is true. - SC2086: Double quote to prevent globbing and word splitting. - SC2166: Prefer [ p ] && [ q ] as [ p -a q ] is not well defined.