Skip to content

Commit 51ff60d

Browse files
author
Ashish Ranjan
committed
Adding support for Linux OS
1 parent 378cd0f commit 51ff60d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

src/nexusidentity/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Release History
44
===============
55

6+
1.0.0b4
7+
++++++
8+
* Adding support of Linux OS
9+
610
1.0.0b3
711
++++++
812
* Adding print statements to o/p creation & update of extensions.

src/nexusidentity/azext_nexusidentity/custom.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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")

src/nexusidentity/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
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

0 commit comments

Comments
 (0)