Skip to content

Commit

Permalink
Ignore gitkeep and DS_Store assets
Browse files Browse the repository at this point in the history
  • Loading branch information
davesmith00000 committed Oct 25, 2024
1 parent 6591e99 commit add29e4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scripts/shadermodule.sc
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ trait ShaderModule extends MillIndigo {
.withWindowSize(550, 400)
.withAssetDirectory(os.RelPath.rel / "assets")
.withBackgroundColor("black")
.excludeAssets {
case p if p.endsWith(os.RelPath.rel / ".gitkeep") => true
case p if p.endsWith(os.RelPath.rel / ".DS_Store") => true
case _ => false
}

def indigoGenerators: IndigoGenerators =
IndigoGenerators("generated")
Expand Down

0 comments on commit add29e4

Please sign in to comment.