From 940f69813c23bfb1e1159acd4e9777d0501f2028 Mon Sep 17 00:00:00 2001 From: Asif Bacchus Date: Fri, 19 Oct 2018 22:31:53 -0600 Subject: [PATCH] Fixed typo in call to find command --- root/scripts/backup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/root/scripts/backup.sh b/root/scripts/backup.sh index c0ca309..91a9086 100644 --- a/root/scripts/backup.sh +++ b/root/scripts/backup.sh @@ -336,7 +336,7 @@ if [ $(id -u) -ne 0 ]; then fi ## 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 echo -e "\n${err}Could not locate the specified mailcow configuration" \ "file: ${lit}${mailcowConfigFile}${normal}"