소스 검색

Bad semicolon.

CedarLUG 8 년 전
부모
커밋
e8392f6640
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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"))
 	# CHECK THAT the array is populated correctly.  Sanity check here -CedarLUG
 
-  	for ((base=0; $base<${#rdirtoks[@]}; base++)) ;
+  	for ((base=0; $base<${#rdirtoks[@]}; base++))
   	do
       		[[ "${rdirtoks[$base]}" != "${bdirtoks[$base]}" ]] && break
   	done