mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-25 02:41:22 +00:00
Merge pull request #590 from illwieckz/nodlpack
don't download gamepacks on “scons -c” fix #477
This commit is contained in:
commit
0084650867
1 changed files with 2 additions and 1 deletions
|
@ -298,7 +298,8 @@ class Config:
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
# special case, fetch external paks under the local install directory
|
# special case, fetch external paks under the local install directory
|
||||||
self.FetchGamePaks( self.install_directory )
|
if not Environment().GetOption('clean'):
|
||||||
|
self.FetchGamePaks( self.install_directory )
|
||||||
# NOTE: unrelated to self.setup_platforms - grab support files and binaries and install them
|
# NOTE: unrelated to self.setup_platforms - grab support files and binaries and install them
|
||||||
if ( self.platform == 'Windows' ):
|
if ( self.platform == 'Windows' ):
|
||||||
backup_cwd = os.getcwd()
|
backup_cwd = os.getcwd()
|
||||||
|
|
Loading…
Reference in a new issue