From 09cc7da282d0467c2bf3dfe35cde71c29e220ea7 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Fri, 4 Oct 2019 06:01:23 -0400 Subject: [PATCH] misc: Add proper archlinux prefix in build script --- misc/fpm-pack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/fpm-pack.sh b/misc/fpm-pack.sh index 924388cc..d8fe7b61 100755 --- a/misc/fpm-pack.sh +++ b/misc/fpm-pack.sh @@ -72,7 +72,7 @@ fi # assume the file extension ext="$typ" if [ "$typ" = "pacman" ]; then # archlinux is an exception - ext=".tar.xz" + ext="pkg.tar.xz" fi # don't run if the file already exists (bad idempotent implementation)