await exec()

in src/kubeconfigs/azCommands.ts [19:32]


   await exec(azPath, args, options)
}
/**
 * Executes an az cli command that will set the kubeconfig
 * @param azPath The path to the az tool
 * @param args The arguments to be be invoked
 * @param kubeconfigPath The path to the kubeconfig that is updated by the command
 * @returns The contents of the kubeconfig
 */
export async function runAzKubeconfigCommandBlocking(
   azPath: string,
   args: string[],
   kubeconfigPath: string
): Promise<string> {