Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
adjustment for the split command
  • Loading branch information
BSd3v committed Jan 12, 2026
commit dab96bd72792e5dfd3e25a0fbed73f155973ea76
8 changes: 4 additions & 4 deletions dash/development/update_components.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def bootstrap_components(components_source, concurrency, install_type):
else "{dash-core-components,dash-html-components,dash-table}"
)

cmdstr = f"npx lerna exec --concurrency {concurrency} --scope={source_glob} -- npm {install_type}"
cmd = shlex.split(cmdstr, posix=not is_windows)
cmdstr = f'npx lerna exec --concurrency {concurrency} --scope="{source_glob}" -- npm {install_type}'
cmd = shlex.split(cmdstr, posix=True)
status_print(cmdstr)

with subprocess.Popen(
Expand Down Expand Up @@ -79,8 +79,8 @@ def build_components(components_source, concurrency):
else "{dash-core-components,dash-html-components,dash-table}"
)

cmdstr = f"npx lerna exec --concurrency {concurrency} --scope={source_glob} -- npm run build"
cmd = shlex.split(cmdstr, posix=not is_windows)
cmdstr = f'npx lerna exec --concurrency {concurrency} --scope="{source_glob}" -- npm run build'
cmd = shlex.split(cmdstr, posix=True)
status_print(cmdstr)

with subprocess.Popen(
Expand Down