mockbuild: don't use short commit ids
The length of these is not predictable. It depends on the shortest unique prefix in the repository and git configuration. Just use the full one, which also makes it easier to copy the id from `git log` or GitHub.
This commit is contained in:
parent
5b827cb0d5
commit
5aee7b9fa7
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ fi
|
|||
MOCK_CONFIG="${ID}-${VERSION_ID%.*}-$(uname -m)"
|
||||
|
||||
# The commit this script operates on.
|
||||
COMMIT=$(git rev-parse --short HEAD)
|
||||
COMMIT=$(git rev-parse HEAD)
|
||||
|
||||
# Bucket in S3 where our artifacts are uploaded
|
||||
REPO_BUCKET=osbuild-composer-repos
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue