Merge pull request #590 from illwieckz/nodlpack

don't download gamepacks on “scons -c” fix #477
This commit is contained in:
Timothee "TTimo" Besset 2018-01-27 14:07:25 -06:00 committed by GitHub
commit 0084650867
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -298,7 +298,8 @@ class Config:
pass
else:
# 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
if ( self.platform == 'Windows' ):
backup_cwd = os.getcwd()