Skip to content

Commit

Permalink
Merge pull request #198 from WithoutPants/pkgignore
Browse files Browse the repository at this point in the history
Use #pkgignore to omit from build script
  • Loading branch information
Maista6969 authored Dec 20, 2023
2 parents 27b74b8 + 0e8f911 commit 1f6d6e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build_site.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 1 addition & 0 deletions plugins/comicInfoExtractor/config.yml
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit 1f6d6e0

Please sign in to comment.