chipfoundry-cli 2.5.0__tar.gz → 2.5.1__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.5.0 → chipfoundry_cli-2.5.1}/PKG-INFO +1 -1
- {chipfoundry_cli-2.5.0 → chipfoundry_cli-2.5.1}/chipfoundry_cli/main.py +5 -3
- {chipfoundry_cli-2.5.0 → chipfoundry_cli-2.5.1}/pyproject.toml +1 -1
- {chipfoundry_cli-2.5.0 → chipfoundry_cli-2.5.1}/LICENSE +0 -0
- {chipfoundry_cli-2.5.0 → chipfoundry_cli-2.5.1}/README.md +0 -0
- {chipfoundry_cli-2.5.0 → chipfoundry_cli-2.5.1}/chipfoundry_cli/__init__.py +0 -0
- {chipfoundry_cli-2.5.0 → chipfoundry_cli-2.5.1}/chipfoundry_cli/check_refs.py +0 -0
- {chipfoundry_cli-2.5.0 → chipfoundry_cli-2.5.1}/chipfoundry_cli/remote_precheck_git.py +0 -0
- {chipfoundry_cli-2.5.0 → chipfoundry_cli-2.5.1}/chipfoundry_cli/utils.py +0 -0
- {chipfoundry_cli-2.5.0 → chipfoundry_cli-2.5.1}/chipfoundry_cli/version_check.py +0 -0
|
@@ -4094,7 +4094,6 @@ def harden(macro, project_root, list_designs, list_from_steps, tag, from_step, o
|
|
|
4094
4094
|
str(venv_bin / 'python3'), '-m', 'librelane',
|
|
4095
4095
|
'-m', str(project_root_path),
|
|
4096
4096
|
'-m', str(pdk_root),
|
|
4097
|
-
'--dockerized',
|
|
4098
4097
|
]
|
|
4099
4098
|
|
|
4100
4099
|
# Add --docker-no-tty if not running in a TTY (e.g., CI environments)
|
|
@@ -4104,7 +4103,10 @@ def harden(macro, project_root, list_designs, list_from_steps, tag, from_step, o
|
|
|
4104
4103
|
except:
|
|
4105
4104
|
# If we can't detect TTY, assume non-TTY (safer for CI)
|
|
4106
4105
|
cmd.append('--docker-no-tty')
|
|
4107
|
-
|
|
4106
|
+
|
|
4107
|
+
# --docker-no-tty must come before --dockerized
|
|
4108
|
+
cmd.append('--dockerized')
|
|
4109
|
+
|
|
4108
4110
|
cmd.extend([
|
|
4109
4111
|
'--manual-pdk',
|
|
4110
4112
|
'--pdk-root', str(pdk_root),
|
|
@@ -5392,4 +5394,4 @@ def whoami_cmd():
|
|
|
5392
5394
|
|
|
5393
5395
|
|
|
5394
5396
|
if __name__ == "__main__":
|
|
5395
|
-
main()
|
|
5397
|
+
main()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|