File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 33 Release History
44===============
55
6+ 1.0.0b4
7+ ++++++
8+ * Adding support of Linux OS
9+
6101.0.0b3
711++++++
812* Adding print statements to o/p creation & update of extensions.
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ def generate_nexus_identity_keys() -> None:
2828 from msgraph .generated .models .o_data_errors .o_data_error import ODataError
2929
3030 # Generate SSH key
31- if sys .platform .startswith ("win" ):
31+ if sys .platform .startswith ("win" ) or sys . platform . startswith ( "linux" ) :
3232
3333 dir_path = os .path .expanduser ("~\\ .ssh" )
3434
@@ -122,4 +122,4 @@ async def me():
122122 asyncio .run (me ())
123123 else :
124124 logger .warning (
125- "This command is currently supported only on Windows platforms" )
125+ "This command is currently supported only on Windows and linux platforms" )
Original file line number Diff line number Diff line change 1616
1717# TODO: Confirm this is the right version number you want and it matches your
1818# HISTORY.rst entry.
19- VERSION = '1.0.0b3 '
19+ VERSION = '1.0.0b4 '
2020
2121# The full list of classifiers is available at
2222# https://pypi.python.org/pypi?%3Aaction=list_classifiers
You can’t perform that action at this time.
0 commit comments