From 4f6d5b611d9f45b867f20391b9856b159ed491be Mon Sep 17 00:00:00 2001 From: Thomas Debesse Date: Sat, 27 Jan 2018 02:40:03 +0100 Subject: [PATCH] =?UTF-8?q?don't=20download=20gamepacks=20on=20=E2=80=9Csc?= =?UTF-8?q?ons=20-c=E2=80=9D=20fix=20#477?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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()