Fixed syntax error.

This commit is contained in:
Storm 2016-02-22 09:02:38 -05:00
parent 02cac8c619
commit 98b8148f35
1 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,7 @@ fi
#There will be a slight gap between the prepended sound and the actual chiming.
#This is to simulate real clocks based on my experience.
if [ "$minute" -eq "0" ]; then
if [[ -f "$soundPack/prepend.ogg" -a "$chime" = "true" ]]; then
if [[ -f "$soundPack/prepend.ogg" && "$chime" = "true" ]]; then
$soundCommand "$soundPack/prepend.ogg"
fi
fi