diff options
author | Andrew Robbins <contact@andrewrobbins.info> | 2017-07-09 03:41:53 -0400 |
---|---|---|
committer | Andrew Robbins <contact@andrewrobbins.info> | 2017-07-09 03:41:53 -0400 |
commit | 8b9a67ccb35e9f152927109a1c4ae0bbd3b984c6 (patch) | |
tree | da6f8d4d61164de3f7bafb12be4ccbbc3eb6e736 /libs/common | |
parent | 74a0a67599f043dd43c9ea3cc3766fcf078c1ad7 (diff) | |
download | librebootfr-8b9a67ccb35e9f152927109a1c4ae0bbd3b984c6.tar.gz librebootfr-8b9a67ccb35e9f152927109a1c4ae0bbd3b984c6.zip |
Suppress GNU tar's warning on filenames w/ nuls.
Diffstat (limited to 'libs/common')
-rwxr-xr-x | libs/common | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/common b/libs/common index 7898f115..e5b8d504 100755 --- a/libs/common +++ b/libs/common @@ -263,6 +263,7 @@ archive_create() { --files-from="${tarfiles_path}" --transform="s,^,${directory}/,S" --no-recursion + --warning=no-filename-with-nuls --null --owner=0 --group=0 @@ -330,6 +331,7 @@ rootfs_create() { --file="${rootfs_path}" --files-from="${tarfiles_path}" --no-recursion + --warning=no-filename-with-nuls --null --owner=0 --group=0 |