Remove user and group info from tar.gz files

This commit is contained in:
Daniel García 2019-01-07 16:21:27 +01:00
parent 536e167238
commit 76e343e0d8
No known key found for this signature in database
GPG Key ID: FC8A7D14C3CD543A

View File

@ -78,7 +78,7 @@ find build -name "*.map" -delete
# Prepare the final archives
cd build
tar -czvf ../../$OUTPUT_NAME *
tar -czvf ../../$OUTPUT_NAME * --owner=0 --group=0
cd ../..