Skip to content

Commit f581ce0

Browse files
committed
Honor --skip-install for extension installers
1 parent d1c93c3 commit f581ce0

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

modules/launch_utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,9 @@ def run_extension_installer(extension_dir):
224224
if not os.path.isfile(path_installer):
225225
return
226226

227+
if args.skip_install:
228+
return
229+
227230
try:
228231
env = os.environ.copy()
229232
env['PYTHONPATH'] = f"{os.path.abspath('.')}{os.pathsep}{env.get('PYTHONPATH', '')}"

0 commit comments

Comments
 (0)