From 0e8f91145876276e8a0b05c8596a525d89a4f453 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Wed, 20 Dec 2023 14:07:15 +1100 Subject: [PATCH] Use #pkgignore to omit from build script --- build_site.sh | 5 +++++ plugins/comicInfoExtractor/config.yml | 1 + 2 files changed, 6 insertions(+) diff --git a/build_site.sh b/build_site.sh index 1c9a59ad..463ee690 100755 --- a/build_site.sh +++ b/build_site.sh @@ -17,6 +17,11 @@ mkdir -p "$outdir" buildPlugin() { f=$1 + + if grep -q "^#pkgignore" "$f"; then + return + fi + # get the scraper id from the directory dir=$(dirname "$f") plugin_id=$(basename "$f" .yml) diff --git a/plugins/comicInfoExtractor/config.yml b/plugins/comicInfoExtractor/config.yml index 51c7d1f5..235e8524 100644 --- a/plugins/comicInfoExtractor/config.yml +++ b/plugins/comicInfoExtractor/config.yml @@ -1,3 +1,4 @@ +#pkgignore #ImportList is a dictionary #that matches an xml Attribute from ComicInfo.xml to the according value in stash (using the graphql naming) #Fields that refer to different types of media are resolved by name and created if necessary (tags, studio, performers)