From a6a7e334cfd3c38ebc5b47e88f21e8079751df67 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Tue, 30 Jul 2024 21:35:43 +0200 Subject: [PATCH] fix shell script --- .woodpecker/test.yml | 2 +- bin/build-debs.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index 09fb0ed..81b482f 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -9,7 +9,7 @@ when: - renovate/* steps: - "Check sehll scripts": + "Check shell scripts": image: pipelinecomponents/shellcheck commands: - shellcheck ./bin/*.sh diff --git a/bin/build-debs.sh b/bin/build-debs.sh index a4bf1b2..52db016 100755 --- a/bin/build-debs.sh +++ b/bin/build-debs.sh @@ -7,5 +7,5 @@ VERSION="$1" for ARCH in amd64 arm64; do fpm -t deb -p "build/i3-wallpaper-manager-$VERSION-$ARCH.deb" \ --architecture $ARCH --version "$VERSION" \ - "build/i3-wallpaper-manager-linux-$ARCH=/usr/bin/i3wp" \ + "build/i3-wallpaper-manager-linux-$ARCH=/usr/bin/i3-wallpaper-manager" done