This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
list = `cat subdirs` |
| 2 |
for it in list |
| 3 |
it.chomp! |
| 4 |
`svn up -N #{it}` |
| 5 |
begin |
| 6 |
Dir.chdir(it) |
| 7 |
pwd=`pwd #{it}` |
| 8 |
print pwd + it |
| 9 |
for y in ['docmessages', 'docs', 'messages'] |
| 10 |
begin |
| 11 |
`svn up -N #{y}` |
| 12 |
Dir.chdir(y) |
| 13 |
`svn up extragear-multimedia` |
| 14 |
Dir.chdir('..') |
| 15 |
rescue StandardError |
| 16 |
puts $! |
| 17 |
end |
| 18 |
end |
| 19 |
Dir.chdir('..') |
| 20 |
rescue |
| 21 |
puts $! |
| 22 |
end |
| 23 |
end |