Browse Source

Bad semicolon.

CedarLUG 8 years ago
parent
commit
e8392f6640
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lgsm/functions/command_backup.sh

+ 1 - 1
lgsm/functions/command_backup.sh

@@ -188,7 +188,7 @@ fn_backup_relpath() {
   	declare -a bdirtoks=($(readlink -f "${backupdir}" | sed "s/\// /g"))
   	declare -a bdirtoks=($(readlink -f "${backupdir}" | sed "s/\// /g"))
 	# CHECK THAT the array is populated correctly.  Sanity check here -CedarLUG
 	# CHECK THAT the array is populated correctly.  Sanity check here -CedarLUG
 
 
-  	for ((base=0; $base<${#rdirtoks[@]}; base++)) ;
+  	for ((base=0; $base<${#rdirtoks[@]}; base++))
   	do
   	do
       		[[ "${rdirtoks[$base]}" != "${bdirtoks[$base]}" ]] && break
       		[[ "${rdirtoks[$base]}" != "${bdirtoks[$base]}" ]] && break
   	done
   	done