Skip to content

Commit 484eeee

Browse files
authoredMar 4, 2025··
[cli] Update CLI update script to use new version (#840)
1 parent 6693940 commit 484eeee

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎apps/nextra/public/scripts/install_cli.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -501,8 +501,14 @@ def get_target(self):
501501
openssl_version = "1.0.0"
502502

503503
if openssl_version.startswith("3."):
504-
return "Ubuntu-22.04-x86_64"
504+
return "Linux-x86_64"
505505

506+
self._write(
507+
colorize(
508+
"warning",
509+
"OpenSSL 1.x.x is deprecated, and future versions of the Aptos CLI may not be published with it",
510+
)
511+
)
506512
return "Ubuntu-x86_64"
507513

508514
def _write(self, line) -> None:

0 commit comments

Comments
 (0)
Please sign in to comment.