mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-09 23:01:55 +00:00
fix the Unvanquished content pull
This commit is contained in:
parent
52942a8260
commit
3f79763974
1 changed files with 5 additions and 1 deletions
|
@ -302,7 +302,11 @@ class Config:
|
|||
self.GitCloneOrUpdate( 'https://github.com/TTimo/Q2RePack.git', pak_path )
|
||||
continue
|
||||
if pak == 'UnvanquishedPack':
|
||||
svnurl = 'https://github.com/Unvanquished/unvanquished-mapeditor-support.git/trunk/build/gtkradiant/'
|
||||
# bit of a hack, github removed svn endpoints, and we have no support for doing sparse checkouts
|
||||
# so let's just get the whole thing and do a copytree (this needs to work on Windows as well, so staying away from symlinks)
|
||||
self.GitCloneOrUpdate( 'https://github.com/Unvanquished/unvanquished-mapeditor-support.git', 'temp/Unvanquished' )
|
||||
shutil.copytree( 'temp/Unvanquished/build/gtkradiant', pak_path, dirs_exist_ok=True )
|
||||
continue
|
||||
else:
|
||||
svnurl = 'svn://svn.icculus.org/gtkradiant-gamepacks/%s/trunk' % pak
|
||||
self.CheckoutOrUpdate( svnurl, pak_path )
|
||||
|
|
Loading…
Reference in a new issue