From c653ac8e1a1ee20d16dedf2ebda9b4b007e21f80 Mon Sep 17 00:00:00 2001 From: Spirit Date: Mon, 26 Aug 2024 22:23:08 +0300 Subject: [PATCH] ignore rm errors --- html-minify.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html-minify.sh b/html-minify.sh index 6a186c4..f04b57a 100755 --- a/html-minify.sh +++ b/html-minify.sh @@ -77,5 +77,5 @@ if [[ -f "$html_file" ]]; then fi # Clean up generated files -rm min.*.js min.*.css min.*.svg "${html_file}.tmp" +rm min.*.js min.*.css min.*.svg "${html_file}.tmp" 2> /dev/null cd $dir