Browse Source

Issue #688: Only exclude generated doc/* files, keep the CMakeLists.txt, etc... so the nodoc tarball can still be built.

tags/json-c-0.17-20230812
Eric Haszlakiewicz 2 years ago
parent
commit
4d529f92dc
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      RELEASE_CHECKLIST.txt

+ 5
- 1
RELEASE_CHECKLIST.txt View File

@@ -94,7 +94,11 @@ Create the release tarballs:
echo .git > excludes
tar -czf json-c-${release}.tar.gz -X excludes json-c-${release}

echo 'doc/*' >> excludes
echo 'doc/*.cmake' >> excludes
echo 'doc/CMakeFiles' >> excludes
echo 'doc/Makefile' >> excludes
echo 'doc/Doxyfile' >> excludes
echo 'doc/html' >> excludes
tar -czf json-c-${release}-nodoc.tar.gz -X excludes json-c-${release}

------------


Loading…
Cancel
Save