Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the file .sconsign.dblite for?

Tags:

scons

What would happen if I delete it?

Should I put it under version control?

like image 914
K.-Michael Aye Avatar asked Oct 12 '12 22:10

K.-Michael Aye


1 Answers

The .sconsign.dblite file is a temporary database used by SCons to keep file signatures to speed up future builds. If you delete it, SCons will recreate it (and your next build might take slightly longer because of that). It should not be put under version control.

like image 68
Greg Hewgill Avatar answered Oct 19 '22 01:10

Greg Hewgill