Subject
Other
Description
@georglauterbach @polarathene
I think we talked before and there was con-sense. But before providing a PR I wanted to get sure 😉
I'd like to change the style of our if-statements from
if [[ ${#} -lt 3 ]]
then
_log 'error' 'At least three parameters must be given'
__usage
exit 1
fi
to
if [[ ${#} -lt 3 ]]; then
_log 'error' 'At least three parameters must be given'
__usage
exit 1
fi
Subject
Other
Description
@georglauterbach @polarathene
I think we talked before and there was con-sense. But before providing a PR I wanted to get sure 😉
I'd like to change the style of our if-statements from
to