Skip to content

Commit

Permalink
Delete .sconsign.dblite at exit
Browse files Browse the repository at this point in the history
  • Loading branch information
NQNStudios committed May 25, 2024
1 parent c691b90 commit 5ad9b66
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SConstruct
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os.path as path
import os
import subprocess
import atexit

# Build options
opts = Variables(None, ARGUMENTS)
Expand Down Expand Up @@ -414,4 +415,4 @@ elif platform == "win32" and subprocess.call(['where', '/Q', 'makensis']) == 0:
# Cleanup

env.Clean('.', 'build')
env.Clean('.', Glob('.sconsign.*'))
atexit.register(lambda: map(os.remove, Glob('.sconsign.*')))

0 comments on commit 5ad9b66

Please sign in to comment.