mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-02-12 07:14:11 +00:00
copy bobtoolz content during setup
This commit is contained in:
parent
6bf30aea6b
commit
cbb3fc5f03
1 changed files with 6 additions and 1 deletions
|
@ -366,6 +366,11 @@ class Config:
|
||||||
]:
|
]:
|
||||||
shutil.copy( os.path.join( srcdir, x64_dll ), 'install/x64' )
|
shutil.copy( os.path.join( srcdir, x64_dll ), 'install/x64' )
|
||||||
|
|
||||||
|
# copy extra bobtoolz content
|
||||||
|
if ( os.path.exists( 'install/modules/bt' ) ):
|
||||||
|
shutil.rmtree( 'install/modules/bt' )
|
||||||
|
shutil.copytree( 'contrib/bobtoolz/bt', 'install/modules/bt' )
|
||||||
|
|
||||||
self.CloneBSPC()
|
self.CloneBSPC()
|
||||||
|
|
||||||
def CloneBSPC( self ):
|
def CloneBSPC( self ):
|
||||||
|
|
Loading…
Reference in a new issue