Skip to content

Commit

Permalink
Fix debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
dmurphy18 committed Aug 8, 2024
1 parent 9de535a commit 4b05eff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/support/pkg.py
Original file line number Diff line number Diff line change
Expand Up @@ -838,6 +838,10 @@ def install_previous(self, downgrade=False):
self._install_ssm_service()

elif platform.is_darwin():
print(
f"DGM test/support/pkg for darwin, machine string '{dgm_platform.dgm_machine()}'",
flush=True,
)
if relenv and dgm_platform.is_arm64():
arch = "arm64"
elif dgm_platform.is_arm64() and self.classic:
Expand All @@ -863,11 +867,7 @@ def install_previous(self, downgrade=False):
dgm_relenv = False

print(
f"DGM test/support/pkg for darwin, machine string '{dgm_platform.dgm_machine()}'",
flush=True,
)
print(
f"DGM test/support/pkg for darwin, relenv '{dgm_relenv}', is_aarch64 '{platform.is_aarch64()}', is_arm64 '{platform.is_arm64()}', classic '{self.classic}', arch '{arch}', mac_pkg '{mac_pkg}', mac_pkg_url '{mac_pkg_url}'",
f"DGM test/support/pkg for darwin, relenv '{dgm_relenv}', is_aarch64 '{platform.is_aarch64()}', dgm is_arm64 '{dgm_platform.is_arm64()}', classic '{self.classic}', arch '{arch}', mac_pkg '{mac_pkg}', mac_pkg_url '{mac_pkg_url}'",
flush=True,
)

Expand Down

0 comments on commit 4b05eff

Please sign in to comment.