Update script to drop references to Travis CI.
authorNikolaus Rath <Nikolaus@rath.org>
Sun, 26 Mar 2023 10:49:40 +0000 (11:49 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Sun, 26 Mar 2023 10:49:40 +0000 (11:49 +0100)
make_release_tarball.sh

index a2e777b96a3069fc026c63414fe6f8911a620069..c1781ef7ef0e3bb8258750b95bd7aacbab9e9c5f 100755 (executable)
@@ -21,9 +21,9 @@ mkdir "${TAG}"
 
 git archive --format=tar "${TAG}" | tar -x "--directory=${TAG}"
 find "${TAG}" -name .gitignore -delete
-rm "${TAG}/make_release_tarball.sh" \
-   "${TAG}/.travis.yml" \
-   "${TAG}/.cirrus.yml"
+rm -r "${TAG}/make_release_tarball.sh" \
+      "${TAG}/.github" \
+      "${TAG}/.cirrus.yml"
 cp -a doc/html "${TAG}/doc/"
 tar -cJf "${TAG}.tar.xz" "${TAG}/"
 gpg --armor --detach-sign "${TAG}.tar.xz"