Merge pull request #10 from maximstewart/develop

small fixes
This commit is contained in:
2020-05-02 19:59:43 -05:00
committed by GitHub

View File

@@ -110,7 +110,8 @@ function remix_recognition() {
} }
function md5_cal() { function md5_cal() {
(cd image/ && find . -type f -print0 | xargs -0 md5sum | grep -v "\./md5sum.txt" > md5sum.txt) cd image/
find . -type f -print0 | xargs -0 md5sum | grep -v "\./md5sum.txt" > md5sum.txt
} }
main $@; main $@;