From 9001168c233c5a32ea3b99e8974ff4659c465005 Mon Sep 17 00:00:00 2001 From: Thomas Debesse Date: Sun, 28 Nov 2021 01:39:02 +0100 Subject: [PATCH] library-bundler: proper xargs usage Prevent this warning: xargs: warning: options --max-args and --replace/-I/-i are mutually exclusive, ignoring previous --max-args value --- library-bundler | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library-bundler b/library-bundler index b08b9c89..54056c41 100755 --- a/library-bundler +++ b/library-bundler @@ -39,7 +39,7 @@ Common::getPath () { if [ "${file_path}" = '-' ] then tr '\n' '\0' \ - | xargs -0 -n1 -P1 -I{} \ + | xargs -0 -P1 -I{} \ cygpath --unix '{}' else cygpath --unix "${file_path}" @@ -448,7 +448,7 @@ Windows::listLibForManifest () { -name '*.dll' \ -exec basename {} \; \ | tr '\n' '\0' \ - | xargs -0 -n1 -P1 -I{} \ + | xargs -0 -P1 -I{} \ printf ' \n' } -- 2.39.2