Skip to content

Commit

Permalink
Merge pull request #15 from MatanBobi/fixes/join-strings-in-isazauthi…
Browse files Browse the repository at this point in the history
…nstalled

fix: join the strings in isAzureAuthInstalled
  • Loading branch information
jcreamer898 authored Apr 22, 2024
2 parents f5cd325 + ca4c3f5 commit 9fffaf8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let memo: boolean | undefined = undefined;
*/
export const isAzureAuthInstalled = async (): Promise<boolean> => {
if (memo === undefined) {
const command = `${azureAuthCommand()} --version`;
const command = `${azureAuthCommand().join(" ")} --version`;

try {
const result = await exec(command);
Expand Down

0 comments on commit 9fffaf8

Please sign in to comment.