From 52e7c45cbfdc9ed417fdb2c4c9b39425209f4c20 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 12 Mar 2020 14:38:47 +0000 Subject: [PATCH] Exclude other user-specific files from source tarball. --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 3f5cfaa4d..38a91d5a0 100755 --- a/build.sh +++ b/build.sh @@ -38,7 +38,7 @@ if [[ ${OS_NAME} == Linux ]]; then tar --exclude-vcs --exclude="*/bin" --exclude="*/obj" --exclude="build" --exclude="pkg/pacman/*/*.tar.xz" \ --exclude="pkg/pacman/*/src" --exclude="pkg/pacman/*/pkg" --exclude="pkg/pacman/*/*.tar" \ - --exclude="pkg/pacman/*/*.asc" -cvf pkg/pacman/stable/aaru-src-${AARU_VERSION}.tar . + --exclude="pkg/pacman/*/*.asc" --exclude="*.user" --exclude=".idea" -cvf pkg/pacman/stable/aaru-src-${AARU_VERSION}.tar . cd pkg/pacman/stable xz -v9e aaru-src-${AARU_VERSION}.tar gpg --armor --detach-sign aaru-src-${AARU_VERSION}.tar.xz