summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Lebon <jonathan@jlebon.com>2022-02-03 13:21:54 -0500
committerJonathan Lebon <jonathan@jlebon.com>2022-02-03 13:21:54 -0500
commit8d45298a2d4ff77a5d70f871873cd099cd49f489 (patch)
treef6e572744d235c94259664e45df822438958c107
parent8e445cb957ecb6a3b428e8a4088a023300fdbd8b (diff)
downloadostree-8d45298a2d4ff77a5d70f871873cd099cd49f489.tar.gz
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.
-rwxr-xr-xci/make-git-snapshot.sh2
1 files changed, 1 insertions, 1 deletions
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