From 49f070977aaef056d4fca7af7f474fa2561bbc5f Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Fri, 13 Feb 2026 13:59:11 +0100 Subject: [PATCH] use proper quotes --- .github/workflows/linux-makepkg.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux-makepkg.yml b/.github/workflows/linux-makepkg.yml index 915cde710..e9f9f7cc4 100644 --- a/.github/workflows/linux-makepkg.yml +++ b/.github/workflows/linux-makepkg.yml @@ -51,7 +51,7 @@ jobs: install -d -m 0755 -o builder -g builder "$PKGDEST" "$SRCDEST" - name: Set package version run: | - sed -i -e 's|^pkgver=.*$|pkgver=${VERSION//-/_}|' dist/linux/makepkg/PKGBUILD + sed -i -e "s|^pkgver=.*$|pkgver=${VERSION//-/_}|" dist/linux/makepkg/PKGBUILD env: VERSION: ${{ needs.get-version.outputs.semVerStr }} - name: Build package with makepkg