diff options
| author | Jeff Carr <[email protected]> | 2024-11-16 09:49:49 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-11-16 09:49:49 -0600 |
| commit | 526605ff8733f14baa737246e2d817d42a556675 (patch) | |
| tree | 517d7cd6ca647bd2080f6b73366e3774a2b2863f /readControlFile.go | |
| parent | d45037dee96be62126c277a8738b39a52b9ed4b9 (diff) | |
add an example to build a custom .deb
Diffstat (limited to 'readControlFile.go')
| -rw-r--r-- | readControlFile.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/readControlFile.go b/readControlFile.go index b307849..8876d64 100644 --- a/readControlFile.go +++ b/readControlFile.go @@ -65,6 +65,8 @@ func (c *controlBox) readControlFile() error { c.Depends.SetText(value) case "Recommends": c.Recommends.SetText(value) + case "Version": + c.Version.SetText(value) case "Package": c.Package.SetText(value) // if c.Package.String() != value { |
