This commit is contained in:
Timothee "TTimo" Besset 2013-06-15 21:09:42 -05:00
parent 6b62952832
commit a97c188cdb

View file

@ -269,7 +269,8 @@ class Config:
cmd = [ 'git', 'clone', 'git://github.com/jdolan/quake2world.git' ] cmd = [ 'git', 'clone', 'git://github.com/jdolan/quake2world.git' ]
subprocess.check_call( cmd ) subprocess.check_call( cmd )
# squash and sync.. # squash and sync..
shutil.rmtree( 'install/installs/Q2WPack/' ) if ( os.path.exists( 'install/installs/Q2WPack' ) ):
shutil.rmtree( 'install/installs/Q2WPack/' )
shutil.copytree( 'quake2world/gtkradiant/Q2WPack/', 'install/installs/Q2WPack/' ) shutil.copytree( 'quake2world/gtkradiant/Q2WPack/', 'install/installs/Q2WPack/' )
def CopyTree( self, src, dst): def CopyTree( self, src, dst):