You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://wiki.debian.org/DebianRepository/Format#Version
The Version field, if specified, shall be the version of the release.
On the other hand, if not set or set to an empty value, the Version
field will not be included in the Release file.
Signed-off-by: Zhang Xiao <xiao.zhang@windriver.com>
Copy file name to clipboardExpand all lines: cmd/publish_repo.go
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,7 @@ Example:
53
53
cmd.Flag.Bool("acquire-by-hash", false, "provide index files by hash")
54
54
cmd.Flag.String("signed-by", "", "an optional field containing a comma separated list of OpenPGP key fingerprints to be used for validating the next Release file")
55
55
cmd.Flag.Bool("multi-dist", false, "enable multiple packages with the same filename in different distributions")
56
+
cmd.Flag.String("version", "", "version of the release")
cmd.Flag.Bool("force-overwrite", false, "overwrite files in package pool in case of mismatch")
253
257
cmd.Flag.Bool("acquire-by-hash", false, "provide index files by hash")
254
258
cmd.Flag.String("signed-by", "", "an optional field containing a comma separated list of OpenPGP key fingerprints to be used for validating the next Release file")
259
+
cmd.Flag.String("version", "", "version of the release")
255
260
cmd.Flag.Bool("multi-dist", false, "enable multiple packages with the same filename in different distributions")
@@ -167,6 +171,7 @@ This command would switch published repository (with one component) named ppa/wh
167
171
cmd.Flag.String("component", "", "component names to update (for multi-component publishing, separate components with commas)")
168
172
cmd.Flag.Bool("force-overwrite", false, "overwrite files in package pool in case of mismatch")
169
173
cmd.Flag.String("signed-by", "", "an optional field containing a comma separated list of OpenPGP key fingerprints to be used for validating the next Release file")
174
+
cmd.Flag.String("version", "", "version of the release")
170
175
cmd.Flag.Bool("skip-cleanup", false, "don't remove unreferenced files in prefix/component")
171
176
cmd.Flag.Bool("multi-dist", false, "enable multiple packages with the same filename in different distributions")
0 commit comments