Revert previous commit, was incorrect
[amarok.git] / release_scripts / create_commit_command.rb
blob080f2bd78d2353e1207124c413be2c24829764f7
1 command="for x in "
2 Dir.foreach(".") { |lang|
3  for part in ['docmessages','docs', 'messages']
4         if(File.exists?("#{lang}/#{part}/extragear-multimedia/"))
5                 command="#{command} #{lang}/#{part}/extragear-multimedia/"
6         end
7  end
9 command=command+"; do svn ci -m 'Copying over the po and doc files to the stable Amarok branch' $x; "
10 command=command+"done;"
11 puts command