From bef8511de0999b442af01ced617bffc93a59684c Mon Sep 17 00:00:00 2001 From: TTimo Date: Sat, 13 Sep 2008 16:12:55 +0000 Subject: [PATCH] fix setup target git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@321 8a3a26a2-13c4-0310-b231-cf6edde360e5 --- config.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config.py b/config.py index b8c4856b..30f623df 100644 --- a/config.py +++ b/config.py @@ -267,7 +267,11 @@ class Config: self.CheckoutOrUpdate( svnurl, os.path.join( path, 'installs', pak ) ) def Setup( self ): - if ( platform == 'local' ): + try: + self.setup_platforms.index( 'local' ) + except: + pass + else: # special case, fetch external paks under the local install directory self.FetchGamePaks( self.install_directory ) # NOTE: unrelated to self.setup_platforms - grab support files and binaries and install them -- 2.39.2