From 0a9d8e2c1628882d3999425bc358591c45a89271 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 20 Jul 2024 01:38:53 +0200 Subject: [PATCH] Fix use of incorrect config keys --- scripts/Common/Software/git/main.fish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/Common/Software/git/main.fish b/scripts/Common/Software/git/main.fish index 3516ef28..657f3976 100644 --- a/scripts/Common/Software/git/main.fish +++ b/scripts/Common/Software/git/main.fish @@ -74,8 +74,8 @@ begin end begin # Aliases - set -l key git.aliases - set -l aliases (getConfig "$root.$key" --json) + set -l key "$root.git.aliases" + set -l aliases (getConfig "$key" --json) for name in (echo "$aliases" | jq 'keys[]' --raw-output0 | string split0) setConfig "alias.$name" (getConfig "$key.$name")