tracker-client 1.0.6 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- 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
|