spotify / docker-kafka

Kafka (and Zookeeper) in Docker
Apache License 2.0
1.4k stars 642 forks source link

Fixes bash syntax #101

Open asbarron opened 5 years ago

asbarron commented 5 years ago

Fix quoted variables and negated test -zresulting in a needless double-negative. You can just use the -n operator instead:

# Identical tests to verify that a value is assigned
[ ! -z foo ] # Not has no value
[ -n foo ]   # Has value