Do not need to fork off Wikis for a Wiki repo

This commit is contained in:
2026-01-03 08:48:39 -06:00
parent 85fdb67dc3
commit 3d0d9b241a
3 changed files with 8 additions and 7 deletions

View File

@@ -11,7 +11,7 @@
#
scriptlist="$(find `dirname "$0"`/scripts.d -type f)"
if [ -f .wiki-repo ]; then
scriptlist="$(echo "$scriptlist" | grep -vE 'Makefile|PKGBUILD|pytest')"
scriptlist="$(echo "$scriptlist" | grep -vE 'Makefile|PKGBUILD|pytest|gitignore')"
fi
for script in $scriptlist; do

View File

@@ -48,9 +48,3 @@ for file in $files; do
fi
done
# Wiki documentation is procedurally generated in its own repo.
if ! grep -E ^wiki/ .gitignore 1>/dev/null; then
echo The wiki folder needs to be ignored.
exit 4
fi

View File

@@ -0,0 +1,7 @@
#!/bin/bash
# Wiki documentation is procedurally generated in its own repo.
if ! grep -E ^wiki/ .gitignore 1>/dev/null; then
echo The wiki folder needs to be ignored.
exit 4
fi