Skip to content

Commit

Permalink
install-reddit: Replace another instance of old bash redirect syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
maxwellhansen authored and spladug committed Aug 23, 2012
1 parent cc1b087 commit 5f6efe5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install-reddit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 5f6efe5

Please sign in to comment.