We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 010bc93 commit 3c46d67Copy full SHA for 3c46d67
sdk/identity/azure-identity/CHANGELOG.md
@@ -1,7 +1,8 @@
1
# Release History
2
3
## 1.4.0b6 (Unreleased)
4
-
+- The async `AzureCliCredential` correctly invokes `/bin/sh`
5
+ ([#12048](https://github.com/Azure/azure-sdk-for-python/issues/12048))
6
7
## 1.4.0b5 (2020-06-12)
8
- Prevent an error on importing `AzureCliCredential` on Windows caused by a bug
sdk/identity/azure-identity/azure/identity/aio/_credentials/azure_cli.py
@@ -62,7 +62,7 @@ async def _run_command(command):
62
if sys.platform.startswith("win"):
63
args = ("cmd", "/c " + command)
64
else:
65
- args = ("/bin/sh", "-c " + command)
+ args = ("/bin/sh", "-c", command)
66
67
working_directory = get_safe_working_dir()
68
0 commit comments