install-reddit: Replace another instance of old bash redirect syntax.

This commit is contained in:
maxwellhansen
2012-08-15 09:45:00 -05:00
committed by Neil Williams
parent cc1b087c10
commit 5f6efe5a6e

View File

@@ -187,7 +187,7 @@ fi
###############################################################################
# Configure Cassandra
###############################################################################
if ! echo | cassandra-cli -h localhost -k reddit > /dev/null 2>&1; then
if ! echo | cassandra-cli -h localhost -k reddit &> /dev/null; then
echo "create keyspace reddit;" | cassandra-cli -h localhost -B
fi