Obsolete, this transformation has been done long since.
This commit is contained in:
parent
f7f2d28ddb
commit
766a1ae929
1 changed files with 0 additions and 26 deletions
|
@ -1,26 +0,0 @@
|
|||
#!/usr/bin/ruby
|
||||
|
||||
files = (`find . -maxdepth 1 -name "MANUAL*" -perm -100`).split("\n")
|
||||
|
||||
dirs = ["data","images","src","po"]
|
||||
|
||||
dirs.each { | dir |
|
||||
dirfiles = (`find #{dir} -perm -100 -a -type f`).split("\n")
|
||||
files.concat(dirfiles)
|
||||
}
|
||||
|
||||
removed = false
|
||||
|
||||
files.each { |file|
|
||||
if (`svn propget svn:executable #{file} 2>/dev/null` == "*\n")
|
||||
print "Removing svn:executable property from #{file}\n"
|
||||
system("svn propdel svn:executable #{file}")
|
||||
removed = true
|
||||
else
|
||||
files.delete(file)
|
||||
end
|
||||
}
|
||||
|
||||
if removed
|
||||
system("svn ci #{files.join(' ')}")
|
||||
end
|
Loading…
Add table
Reference in a new issue