* clear xattr on reverted files

This commit is contained in:
Reinhard Pointner 2013-03-07 14:11:23 +00:00
parent 2b0aff8038
commit 2fa6be847e
1 changed files with 3 additions and 0 deletions

View File

@ -10,6 +10,9 @@ def revert(from, to) {
println "[$action] Revert [$from] to [$to]"
action.rename(from, to)
// reset extended attributes
tryQuietly{ to.xattr.clear() }
}