Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ospring committed Dec 10, 2024
1 parent d2fb2f9 commit 7fd7221
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/usr/local/kobocloud/get.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ then
fi

#list file in lib dir before sync
lib_list_before=`ls -lnR --ignore "*.log" --full-time "$Lib" | grep -v -e ".*\.log$" -e "^total [0-9]\+"`
lib_list_before=`ls -lnR --full-time "$Lib" | grep -v -e ".*\.log$" -e "^total [0-9]\+"`
echo "Current Library list"
echo "$lib_list_before"

Expand Down Expand Up @@ -105,7 +105,7 @@ fi

#list file in lib dir after sync
echo "New Library list"
lib_list_after=`ls -lnR --ignore "*.log" --full-time "$Lib" | grep -v -e ".*\.log$" -e "^total [0-9]\+"`
lib_list_after=`ls -lnR --full-time "$Lib" | grep -v -e ".*\.log$" -e "^total [0-9]\+"`
echo "$lib_list_after"

#compare filelist before and after
Expand Down

0 comments on commit 7fd7221

Please sign in to comment.