We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b62952 commit a97c188Copy full SHA for a97c188
config.py
@@ -269,7 +269,8 @@ def FetchGamePaks( self, path ):
269
cmd = [ 'git', 'clone', 'git://github.com/jdolan/quake2world.git' ]
270
subprocess.check_call( cmd )
271
# squash and sync..
272
- shutil.rmtree( 'install/installs/Q2WPack/' )
+ if ( os.path.exists( 'install/installs/Q2WPack' ) ):
273
+ shutil.rmtree( 'install/installs/Q2WPack/' )
274
shutil.copytree( 'quake2world/gtkradiant/Q2WPack/', 'install/installs/Q2WPack/' )
275
276
def CopyTree( self, src, dst):
0 commit comments