summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2017-04-13 23:16:08 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2017-04-13 23:16:08 -0700
commit30aa2ec5f7cc6d3b568363a655aeadaa51445d33 (patch)
tree8a22c607f2b9516e106c06bf2b62c69beb155f7b /tools
parent5194f77bfd38ce14176b2b5efab2052bf7014bbd (diff)
downloadnasm-30aa2ec5f7cc6d3b568363a655aeadaa51445d33.tar.gz
tools/release: update the list of binary files
Update the patterns for binary files. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/release10
1 files changed, 6 insertions, 4 deletions
diff --git a/tools/release b/tools/release
index f7025f13..06d2ee42 100755
--- a/tools/release
+++ b/tools/release
@@ -63,8 +63,10 @@ mv nasm-"$version".tar.gz nasm-"$version".tar.bz2 nasm-"$version".tar.xz ..
# Create zipfile (DOS convention: no prefix, convert file endings)
cd nasm-"$version"
-zip -9Dlr ../../nasm-"$version".zip * -x \*.jpg -x \*.zip -x \*.ico # Text files
-zip -9Dgr ../../nasm-"$version".zip * -i \*.jpg -i \*.zip -i \*.ico # Binary files
+# Text files
+zip -9Dlr ../../nasm-"$version".zip * -x \*.jpg -x \*.zip -x \*.ico -x \*.png
+# Binary files
+zip -9Dgr ../../nasm-"$version".zip * -i \*.jpg -i \*.zip -i \*.ico -i \*.png
cd ..
# Record what we have already generated
@@ -92,8 +94,8 @@ mv nasm-"$version"-xdoc.tar.gz nasm-"$version"-xdoc.tar.bz2 nasm-"$version"-xdoc
# Create doc zipfile (DOS convention: no prefix, convert file endings)
cd nasm-"$version"
-zip -9Dlr ../../nasm-"$version"-xdoc.zip doc -x \*.pdf
-zip -9Dgr ../../nasm-"$version"-xdoc.zip doc -i \*.pdf
+zip -9Dlr ../../nasm-"$version"-xdoc.zip doc -x \*.pdf -x \*.png
+zip -9Dgr ../../nasm-"$version"-xdoc.zip doc -i \*.pdf -i \*.png
# Clean up
cd ../..