forked from mirrors/qmk_userspace
		
	Dedup the list of tested userspace paths. (#22599)
This commit is contained in:
		
					parent
					
						
							
								b68e89f846
							
						
					
				
			
			
				commit
				
					
						01eed8d5d8
					
				
			
		
					 1 changed files with 5 additions and 5 deletions
				
			
		| 
						 | 
					@ -12,29 +12,29 @@ from qmk.json_encoders import UserspaceJSONEncoder
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
def qmk_userspace_paths():
 | 
					def qmk_userspace_paths():
 | 
				
			||||||
    test_dirs = []
 | 
					    test_dirs = {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # If we're already in a directory with a qmk.json and a keyboards or layouts directory, interpret it as userspace
 | 
					    # If we're already in a directory with a qmk.json and a keyboards or layouts directory, interpret it as userspace
 | 
				
			||||||
    if environ.get('ORIG_CWD') is not None:
 | 
					    if environ.get('ORIG_CWD') is not None:
 | 
				
			||||||
        current_dir = Path(environ['ORIG_CWD'])
 | 
					        current_dir = Path(environ['ORIG_CWD'])
 | 
				
			||||||
        while len(current_dir.parts) > 1:
 | 
					        while len(current_dir.parts) > 1:
 | 
				
			||||||
            if (current_dir / 'qmk.json').is_file():
 | 
					            if (current_dir / 'qmk.json').is_file():
 | 
				
			||||||
                test_dirs.append(current_dir)
 | 
					                test_dirs[current_dir] = True
 | 
				
			||||||
            current_dir = current_dir.parent
 | 
					            current_dir = current_dir.parent
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # If we have a QMK_USERSPACE environment variable, use that
 | 
					    # If we have a QMK_USERSPACE environment variable, use that
 | 
				
			||||||
    if environ.get('QMK_USERSPACE') is not None:
 | 
					    if environ.get('QMK_USERSPACE') is not None:
 | 
				
			||||||
        current_dir = Path(environ['QMK_USERSPACE'])
 | 
					        current_dir = Path(environ['QMK_USERSPACE'])
 | 
				
			||||||
        if current_dir.is_dir():
 | 
					        if current_dir.is_dir():
 | 
				
			||||||
            test_dirs.append(current_dir)
 | 
					            test_dirs[current_dir] = True
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    # If someone has configured a directory, use that
 | 
					    # If someone has configured a directory, use that
 | 
				
			||||||
    if cli.config.user.overlay_dir is not None:
 | 
					    if cli.config.user.overlay_dir is not None:
 | 
				
			||||||
        current_dir = Path(cli.config.user.overlay_dir)
 | 
					        current_dir = Path(cli.config.user.overlay_dir)
 | 
				
			||||||
        if current_dir.is_dir():
 | 
					        if current_dir.is_dir():
 | 
				
			||||||
            test_dirs.append(current_dir)
 | 
					            test_dirs[current_dir] = True
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return test_dirs
 | 
					    return list(test_dirs.keys())
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
def qmk_userspace_validate(path):
 | 
					def qmk_userspace_validate(path):
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue