blob: 280ba92936c2eb8bddfd28ec6b4ca71433ece295 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/usr/bin/ruby -w
module Repoman
def Repoman.scan()
system "repoman scan"
end
def Repoman.full()
system "repoman full"
end
def Repoman.commit(commitmsg)
system "repoman commit --commitmsg \"#{commitmsg}\""
end
end
|