Fixed typo in call to find command

This commit is contained in:
Asif Bacchus 2018-10-19 22:31:53 -06:00
parent 7f1c74786e
commit 940f69813c
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ if [ $(id -u) -ne 0 ]; then
fi fi
## Find mailcow configuration file so additional variables can be read ## Find mailcow configuration file so additional variables can be read
mailcowConfigFilePath=$(find / -mount -name "$mailcowConfigFile" -print ) mailcowConfigFilePath=$( find / -mount -name "$mailcowConfigFile" -print )
if [ -z "$mailcowConfigFilePath" ]; then if [ -z "$mailcowConfigFilePath" ]; then
echo -e "\n${err}Could not locate the specified mailcow configuration" \ echo -e "\n${err}Could not locate the specified mailcow configuration" \
"file: ${lit}${mailcowConfigFile}${normal}" "file: ${lit}${mailcowConfigFile}${normal}"