From 1ed0ea25f15d0731ccbb59f19abd350b21a2deae Mon Sep 17 00:00:00 2001 From: Maxim Stewart Date: Sat, 2 May 2020 19:58:33 -0500 Subject: [PATCH] small fixes --- src/step_3_create_boot_structure.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 $@;