nf-*-cli: fix typo in conditional (#43806)
The default runner changed on GitHub for macOS, and that revealed a bug in a package when running audits
This commit is contained in:
parent
aa0825d642
commit
d438d7993d
2 changed files with 2 additions and 2 deletions
|
@ -104,7 +104,7 @@ class NfTowerCli(Package):
|
||||||
url="https://github.com/seqeralabs/tower-cli/releases/download/v0.6.2/tw-0.6.2-linux-x86_64",
|
url="https://github.com/seqeralabs/tower-cli/releases/download/v0.6.2/tw-0.6.2-linux-x86_64",
|
||||||
expand=False,
|
expand=False,
|
||||||
)
|
)
|
||||||
elif platform.machine() == "aarch64":
|
elif platform.machine() == "arm64":
|
||||||
if platform.system() == "Darwin":
|
if platform.system() == "Darwin":
|
||||||
version(
|
version(
|
||||||
"0.9.2",
|
"0.9.2",
|
||||||
|
|
|
@ -41,7 +41,7 @@ class NfWaveCli(Package):
|
||||||
url="https://github.com/seqeralabs/wave-cli/releases/download/v1.1.3/wave-1.1.3-linux-x86_64",
|
url="https://github.com/seqeralabs/wave-cli/releases/download/v1.1.3/wave-1.1.3-linux-x86_64",
|
||||||
expand=False,
|
expand=False,
|
||||||
)
|
)
|
||||||
elif platform.machine() == "aarch64":
|
elif platform.machine() == "arm64":
|
||||||
if platform.system() == "Darwin":
|
if platform.system() == "Darwin":
|
||||||
version(
|
version(
|
||||||
"1.2.0",
|
"1.2.0",
|
||||||
|
|
Loading…
Reference in a new issue