PCM implementation

This commit is contained in:
qu1ck
2020-10-26 03:54:36 -07:00
committed by Seth Hillbrand
parent 4937cd537b
commit 0f7c0e3872
63 changed files with 9429 additions and 110 deletions
+6 -2
View File
@@ -459,8 +459,12 @@ wxString SCRIPTING::PyScriptingPath( PATH_TYPE aPathType )
//@todo This should this be a user configurable variable eg KISCRIPT?
switch( aPathType )
{
case STOCK: path = PATHS::GetStockScriptingPath(); break;
case USER: path = PATHS::GetUserScriptingPath(); break;
case STOCK:
path = PATHS::GetStockScriptingPath();
break;
case USER:
path = PATHS::GetUserScriptingPath();
break;
case THIRDPARTY:
const ENV_VAR_MAP& env = Pgm().GetLocalEnvVariables();
auto it = env.find( "KICAD6_3RD_PARTY" );