From 2fa6be847e21f94e950dae460c941d27330dc0c6 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Thu, 7 Mar 2013 14:11:23 +0000 Subject: [PATCH] * clear xattr on reverted files --- website/scripts/revert.groovy | 3 +++ 1 file changed, 3 insertions(+) diff --git a/website/scripts/revert.groovy b/website/scripts/revert.groovy index a489175b..be57c76d 100644 --- a/website/scripts/revert.groovy +++ b/website/scripts/revert.groovy @@ -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() } }