Skip to content

Commit

Permalink
Updated ignores in SConstruct
Browse files Browse the repository at this point in the history
Updated ignores to exclude RegAutomation and ProjectLauncher when compiling the godot project.
  • Loading branch information
haraldwer committed Nov 13, 2023
1 parent 1464f40 commit 342dec8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ def getSubdirs(path) :
if os.path.isdir(os.path.join(path, name)) and
name != ".idea" and
name != "x64" and
name != ".temp" ]
name != ".temp" and
name != "RegAutomation" and
name != "ProjectLauncher"]
return lst

def getDirsRec(path) :
Expand Down

0 comments on commit 342dec8

Please sign in to comment.