diff --git a/config.py b/config.py index 92f809cf..4dc31d39 100644 --- a/config.py +++ b/config.py @@ -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()