From d85b00dfd63c994faacb5d8392f0631c019847ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christina=20S=C3=B8rensen?= Date: Fri, 15 Sep 2023 08:55:07 +0200 Subject: [PATCH] build(cross): fix checksums MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christina Sørensen --- Justfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Justfile b/Justfile index 040f22e0..5f6ebd0f 100644 --- a/Justfile +++ b/Justfile @@ -134,13 +134,13 @@ all-release: build-release test-release # Generate Checksums echo "# Checksums" echo "## sha256sum" - echo "```" + echo '```' sha256sum ./target/"bin-$(convco version)"/* - echo "```" + echo '```' echo "## md5sum" - echo "```" + echo '```' md5sum ./target/"bin-$(convco version)"/* - echo "```" + echo '```' #---------------------# # Integration testing #