use [ A ] && [ B ] instead of [ A -a B ] as recommended by shellcheck

pull/1/head
parent 2d6703add0
commit 35d45c8504
Signed by: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -61,7 +61,7 @@ for dist in stable testing unstable; do
> sizes
for variant in minbase buildd -; do
# skip because of different userids for apt/systemd
if [ "$dist" = 'stable' -a "$variant" = '-' ]; then
if [ "$dist" = 'stable' ] && [ "$variant" = '-' ]; then
continue
fi
echo =========================================================

Loading…
Cancel
Save