From 8d45298a2d4ff77a5d70f871873cd099cd49f489 Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Thu, 3 Feb 2022 13:21:54 -0500 Subject: [PATCH] ci/make-git-snapshot.sh: fix archive name The archive name is libostree even though the project name is ostree, so we can't rely on the directory name. Just hardcode it. --- ci/make-git-snapshot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/make-git-snapshot.sh b/ci/make-git-snapshot.sh index 67cf14c9..391af64d 100755 --- a/ci/make-git-snapshot.sh +++ b/ci/make-git-snapshot.sh @@ -5,7 +5,7 @@ TOP=$(git rev-parse --show-toplevel) GITREV=$(git rev-parse HEAD) gitdescribe=$(git describe --always --tags $GITREV) version=$(echo "$gitdescribe" | sed -e 's,-,\.,g' -e 's,^v,,') -name=$(basename $(pwd)) +name=libostree PKG_VER="${name}-${version}" TARFILE=${PKG_VER}.tar