Ignore hidden file (.git directory)

This commit is contained in:
Ai Lin Chia
2015-12-22 13:40:04 +01:00
parent f64e1e0d7b
commit 971290aaad

@ -8,7 +8,7 @@ if [ -f ${working_dir}/fatal_error ]; then
fi
# Dump list of files before allowing gb to continue running
find . -type f -exec ls -l --full-time {} \; 2> /dev/null |column -t|sort -k 9 > file_state_before_run.txt
find . -not -path '*/\.*' -type f -exec ls -l --full-time {} \; 2> /dev/null |column -t|sort -k 9 > file_state_before_run.txt
# verify system converters exist