Skip to content

Commit 8639137

Browse files
committed
Fix installer when pointing to a local directory
1 parent c953721 commit 8639137

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,9 +395,9 @@ def list_packages(path, logger):
395395
else:
396396
logger = logging.getLogger('list_packages')
397397
packages = {}
398-
path = path.lower()
399398
found_files = []
400399
if 'http' in path:
400+
path = path.lower()
401401
log.debug("Repo path is an HTTP url")
402402
if 'github.com/' in path and path.endswith('releases'):
403403
log.debug('Repo path is a github releases url. Looking for devlab packages in releases')

0 commit comments

Comments
 (0)