chipfoundry-cli 2.2.1__tar.gz → 2.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {chipfoundry_cli-2.2.1 → chipfoundry_cli-2.2.2}/PKG-INFO +1 -1
- {chipfoundry_cli-2.2.1 → chipfoundry_cli-2.2.2}/chipfoundry_cli/main.py +4 -1
- {chipfoundry_cli-2.2.1 → chipfoundry_cli-2.2.2}/pyproject.toml +1 -1
- {chipfoundry_cli-2.2.1 → chipfoundry_cli-2.2.2}/LICENSE +0 -0
- {chipfoundry_cli-2.2.1 → chipfoundry_cli-2.2.2}/README.md +0 -0
- {chipfoundry_cli-2.2.1 → chipfoundry_cli-2.2.2}/chipfoundry_cli/__init__.py +0 -0
- {chipfoundry_cli-2.2.1 → chipfoundry_cli-2.2.2}/chipfoundry_cli/utils.py +0 -0
|
@@ -3275,12 +3275,15 @@ def precheck(project_root, skip_checks, magic_drc, checks, dry_run):
|
|
|
3275
3275
|
if checks:
|
|
3276
3276
|
precheck_args.extend(list(checks))
|
|
3277
3277
|
|
|
3278
|
-
inner_cmd = 'pip3 install --upgrade -q cf-precheck && cf-precheck ' + ' '.join(precheck_args)
|
|
3278
|
+
inner_cmd = 'pip3 install --upgrade -q --root-user-action=ignore cf-precheck 2>/dev/null && cf-precheck ' + ' '.join(precheck_args)
|
|
3279
3279
|
|
|
3280
3280
|
docker_cmd = [
|
|
3281
3281
|
'docker', 'run', '--rm',
|
|
3282
3282
|
'-v', f'{project_root_path}:{project_root_path}',
|
|
3283
3283
|
'-v', f'{pdk_root}:{pdk_root}',
|
|
3284
|
+
'-e', f'PDK_ROOT={pdk_root}',
|
|
3285
|
+
'-e', f'PDK_PATH={pdk_path}',
|
|
3286
|
+
'-e', f'PDKPATH={pdk_path}',
|
|
3284
3287
|
docker_image,
|
|
3285
3288
|
'bash', '-c', inner_cmd,
|
|
3286
3289
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|