From fdaf5d1c36d37262d90aa1b478747d6e7a998a2c Mon Sep 17 00:00:00 2001 From: Armin Schrenk Date: Fri, 13 Feb 2026 13:29:38 +0100 Subject: [PATCH] rename 'aur' dir to ' makepkg' mention the format rather a specific repository --- .github/workflows/linux-makepkg.yml | 8 ++++---- dist/linux/{aur => makepkg}/PKGBUILD | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename dist/linux/{aur => makepkg}/PKGBUILD (100%) diff --git a/.github/workflows/linux-makepkg.yml b/.github/workflows/linux-makepkg.yml index da47d8c05..40a89b486 100644 --- a/.github/workflows/linux-makepkg.yml +++ b/.github/workflows/linux-makepkg.yml @@ -16,8 +16,8 @@ on: branches-ignore: - 'dependabot/**' paths: - - '.github/workflows/aur.yml' - - 'dist/linux/aur/**' + - '.github/workflows/linux-makepkg.yml' + - 'dist/linux/makepkg/**' - 'dist/linux/common/**' - 'dist/linux/resources/**' @@ -51,9 +51,9 @@ jobs: install -d -m 0755 -o builder -g builder "$PKGDEST" "$SRCDEST" - name: Set package version run: | - sed -i -e 's|^pkgver=.*$|pkgver=${{ needs.get-version.outputs.semVerStr }}|' dist/linux/aur/PKGBUILD + sed -i -e 's|^pkgver=.*$|pkgver=${{ needs.get-version.outputs.semVerStr }}|' dist/linux/makepkg/PKGBUILD - name: Build package with makepkg - working-directory: dist/linux/aur + working-directory: dist/linux/makepkg run: | sudo -u builder env \ PKGDEST="$PKGDEST" \ diff --git a/dist/linux/aur/PKGBUILD b/dist/linux/makepkg/PKGBUILD similarity index 100% rename from dist/linux/aur/PKGBUILD rename to dist/linux/makepkg/PKGBUILD