Alex

Results 6 comments of Alex

As far as I can tell, the Maven plugin uses `System.getProperty("user.home")` to find the Azure CLI configuration files in two places: 1. src/main/java/com/microsoft/azure/maven/AbstractAzureMojo.java 2. src/main/java/com/microsoft/azure/maven/auth/AzureAuthHelper.java It might be feasible to...

FWIW, I created a quick hack and opened PR #674 for this issue. I hope that is okay.

Hi @Flanker32, thank you for your reply. Should I delete my PR, since this is something that needs to be fixed via [the other issue](https://github.com/Azure/autorest-clientruntime-for-java/issues/618)?

Dear @andxu, Thank you for your reply! I am no longer able to test your changes, as I am no longer involved in that particular project. As a side-note: we...

Here is a quick hack that I came up with: ``` #!/usr/bin/env bash _asdf_complete_kubectl() { currentVersion="$(asdf current kubectl)" if [[ ${_ASDF_COMPLETE_KUBECTL_VER} = "${currentVersion}" ]] then __start_kubectl "${@}" else source source...

FWIW, a general version of this is not so hard (requires Bash 4.3 for the variable references): ``` # Run a completion, loads it lazily if not already done __asdf_complete()...