Skip to content

Commit

Permalink
Merge pull request #2 from braun-daniel/bugfix/wrong-rgs
Browse files Browse the repository at this point in the history
fix: wrong fzf subscriptions;
  • Loading branch information
braun-daniel authored Jul 4, 2024
2 parents d84c51f + 281896d commit 32a3186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pim
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ fuzzy_select_subscription() {
}

fuzzy_select_resource_group() {
resource_group=$(az group list --query "[].name" -o tsv | fzf --prompt="Select Resource Group: ")
resource_group=$(az group list --subscription "$subscription" --query "[].name" -o tsv | fzf --prompt="Select Resource Group: ")
if [[ -z "$resource_group" ]]; then
echo "No resource group selected. Exiting."
exit 1
Expand Down

0 comments on commit 32a3186

Please sign in to comment.