[#53] Fix dirty in version #54
No reviewers
Labels
No labels
P0
P1
P2
P3
badger
frostfs-adm
frostfs-cli
frostfs-ir
frostfs-lens
frostfs-node
good first issue
triage
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-node#54
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Now after build debian package, we see "dirty" suffix in version, example:
It's happens because
make debpackage
download all dependencies in work directory, and after download git directory have uncommited changes. All changes are placed in debian folder and i'm solve this problem after add this files in .gitignoreSigned-off-by: Aleksey Pastukhov a.pastukhov@yadro.com
-dirty
suffix is appended only if files in the working tree (committed or staged) are altered. None of these patterns is in tree. Why does it solve the problem?deb package, when building, download a dependencies and create some files in worktree, after build package i'm see next:
this files are make version dirty, because they always created on build package.
On this mask created:
debian/debhelper-build-stamp debian/frostfs-cli.debhelper.log debian/frostfs-ir.debhelper.log debian/frostfs-storage.debhelper.log debian/frostfs-storage.postrm.debhelper
on you gitignore was a
**/.debhelper
but this not working ....