summaryrefslogtreecommitdiffstats
path: root/core/includes
diff options
context:
space:
mode:
Diffstat (limited to 'core/includes')
-rw-r--r--core/includes/helper/fileutil.inc1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/includes/helper/fileutil.inc b/core/includes/helper/fileutil.inc
index 89d58f1a..b5a1e72d 100644
--- a/core/includes/helper/fileutil.inc
+++ b/core/includes/helper/fileutil.inc
@@ -25,7 +25,6 @@ tarcopy () {
[ ! -d "$TO" ] && { mkdir -p "$TO" || perror "could not create destination "$TO" for tar-copy."; }
# TODO count files copied? would remove the need to do it everywhere :)
tar $IGNORE_ERROR -cpP $FROM | tar -xp -C "$TO" \
- --transform 's,^/lib/udev/rules.d,/usr/lib/udev/rules.d,' \
2> /dev/null
local PS=(${PIPESTATUS[*]})
[ "x$IGNORE_ERROR" == "x" -a "x${PS[0]}" != "x0" ] && perror "packing-part of tar-copy from '$SHORT' to '$TO' failed. (${PS[0]})"