From cfb40dc4762b0a20f6c3d16a352e8e38f24a5620 Mon Sep 17 00:00:00 2001 From: Simon C Date: Thu, 29 Apr 2021 22:02:56 +0200 Subject: [PATCH] feat: Add comment when file is bigger than original --- scripts/run | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/run b/scripts/run index 0b3bcf5..cfe6982 100755 --- a/scripts/run +++ b/scripts/run @@ -107,6 +107,8 @@ optimizer_git_image() { elif [ "$current_size" -lt "$old_size" ]; then git add $file git amend-to $last_file_update_commit_hash + else + echo "😳 file '$file' is bigger than original file..." fi done }