mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-25 02:41:22 +00:00
Remove 'git clone horror' :)
This commit is contained in:
parent
625eaa9502
commit
32e9a51af2
1 changed files with 1 additions and 14 deletions
15
config.py
15
config.py
|
@ -261,22 +261,9 @@ class Config:
|
||||||
|
|
||||||
def FetchGamePaks( self, path ):
|
def FetchGamePaks( self, path ):
|
||||||
for pak in self.setup_packs:
|
for pak in self.setup_packs:
|
||||||
if ( pak == 'Q2WPack' ):
|
|
||||||
continue
|
|
||||||
svnurl = 'svn://svn.icculus.org/gtkradiant-gamepacks/%s/trunk' % pak
|
svnurl = 'svn://svn.icculus.org/gtkradiant-gamepacks/%s/trunk' % pak
|
||||||
self.CheckoutOrUpdate( svnurl, os.path.join( path, 'installs', pak ) )
|
self.CheckoutOrUpdate( svnurl, os.path.join( path, 'installs', pak ) )
|
||||||
|
|
||||||
if 'Q2WPack' in self.setup_packs:
|
|
||||||
if ( os.path.exists( 'quake2world' ) ):
|
|
||||||
subprocess.check_call( [ 'git', 'pull', ], cwd = 'quake2world' )
|
|
||||||
else:
|
|
||||||
cmd = [ 'git', 'clone', 'git://github.com/jdolan/quake2world.git' ]
|
|
||||||
subprocess.check_call( cmd )
|
|
||||||
# squash and sync..
|
|
||||||
if ( os.path.exists( 'install/installs/Q2WPack' ) ):
|
|
||||||
shutil.rmtree( 'install/installs/Q2WPack/' )
|
|
||||||
shutil.copytree( 'quake2world/support/gtkradiant/Q2WPack/', 'install/installs/Q2WPack/' )
|
|
||||||
|
|
||||||
def CopyTree( self, src, dst):
|
def CopyTree( self, src, dst):
|
||||||
for root, dirs, files in os.walk( src ):
|
for root, dirs, files in os.walk( src ):
|
||||||
target_dir = os.path.join( dst, root[root.find( '/' )+1:] )
|
target_dir = os.path.join( dst, root[root.find( '/' )+1:] )
|
||||||
|
|
Loading…
Reference in a new issue