From: Eric Haszlakiewicz Date: Wed, 13 Jan 2021 01:30:16 +0000 (+0000) Subject: Keep the doc directory in the nodoc release tarball, just exclude its contents. X-Git-Tag: json-c-0.16-20220414~37^2~12 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=69d650528da0e23654065f4efc26c469bdae663c;p=thirdparty%2Fjson-c.git Keep the doc directory in the nodoc release tarball, just exclude its contents. --- diff --git a/RELEASE_CHECKLIST.txt b/RELEASE_CHECKLIST.txt index 8e706175..9f6b6dbe 100644 --- a/RELEASE_CHECKLIST.txt +++ b/RELEASE_CHECKLIST.txt @@ -93,7 +93,7 @@ Create the release tarballs: echo .git > excludes tar -czf json-c-${release}.tar.gz -X excludes json-c-${release} - echo doc >> excludes + echo 'doc/*' >> excludes tar -czf json-c-${release}-nodoc.tar.gz -X excludes json-c-${release} ------------