From 490f01bba253698ca73e70b65592bacc4255371d Mon Sep 17 00:00:00 2001 From: Slavi Pantaleev Date: Mon, 20 Nov 2023 11:21:28 +0200 Subject: [PATCH] Remove debug lines --- justfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/justfile b/justfile index 557704b..0be5774 100644 --- a/justfile +++ b/justfile @@ -78,17 +78,13 @@ _ensure_file_prepared src_path dst_path: src_hash=$(md5sum {{ src_path }} | cut -d ' ' -f 1) if [ ! -f "{{ dst_path }}" ] || [ ! -f "$hash_path" ]; then - echo "One of the ORS" cp {{ src_path }} {{ dst_path }} echo $src_hash > $hash_path else current_hash=$(cat $hash_path) if [ "$current_hash" != "$src_hash" ]; then - echo "Hash is different ($current_hash != $src_hash)" cp {{ src_path }} {{ dst_path }} echo $src_hash > $hash_path - else - echo "Hash matches!" fi fi