diff --git a/src/step_3_create_boot_structure.sh b/src/step_3_create_boot_structure.sh index 3254d01..4b7b735 100755 --- a/src/step_3_create_boot_structure.sh +++ b/src/step_3_create_boot_structure.sh @@ -110,7 +110,8 @@ function remix_recognition() { } 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 $@;