From e17b59d4534220d140001d6af36f48728df6f617 Mon Sep 17 00:00:00 2001 From: Juan Mesaglio Date: Mon, 10 Jul 2023 19:29:46 -0300 Subject: [PATCH] Fix bat binary name. Signed-off-by: Juan Mesaglio --- bat.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bat.yaml b/bat.yaml index f7d79bcd559..05dc4d24f95 100644 --- a/bat.yaml +++ b/bat.yaml @@ -1,7 +1,7 @@ package: name: bat version: 0.23.0 - epoch: 0 + epoch: 1 description: "A cat(1) clone with wings" copyright: - license: MIT @@ -28,7 +28,7 @@ pipeline: cargo build --frozen --release - runs: | - install -Dm755 target/release/bat "${{targets.destdir}}"/usr/bin/exa + install -Dm755 target/release/bat "${{targets.destdir}}"/usr/bin/bat - uses: strip