tracker-client 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/tracker +2 -0
- metadata +1 -1
data/bin/tracker
CHANGED
@@ -25,6 +25,7 @@ def print_usage
|
|
25
25
|
puts 'Usage:'
|
26
26
|
puts
|
27
27
|
puts 'tracker record - Record current patchset to tracker'
|
28
|
+
puts 'tracker publish - Record current patchset to tracker and upload patches'
|
28
29
|
puts 'tracker ack - ACK all patches in current branch'
|
29
30
|
puts 'tracker nack - NACK all patches in current branch'
|
30
31
|
puts 'tracker push - Mark all patches in current branch as PUSHED'
|
@@ -57,5 +58,6 @@ puts case ARGV[0]
|
|
57
58
|
when 'status' then Tracker::Cmd.status(opts[:dir])
|
58
59
|
when 'apply' then Tracker::Cmd.apply(opts[:dir], ARGV[1])
|
59
60
|
when 'list' then Tracker::Cmd.list(ARGV[1], opts)
|
61
|
+
when 'publish' then Tracker::Cmd.record(opts[:dir], { :obsolete => opts[:obsolete], :upload => true})
|
60
62
|
else print_usage
|
61
63
|
end
|