diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-14 16:17:46 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-04-14 16:17:46 +0200 |
commit | 22c21fd3571a41fcb6f38cf8a75b5eaf08b317bf (patch) | |
tree | 91bda66da8012b003cf36533f88f25c064dd3c65 /pkgs | |
parent | pkgs/fupdate-flake: Avoid duplicated "Debug" in debug print (diff) | |
download | nixos-config-22c21fd3571a41fcb6f38cf8a75b5eaf08b317bf.zip |
pkgs/fupdate-flake: Use correct name for `$XDG_DATA_HOME` prime
Diffstat (limited to 'pkgs')
-rwxr-xr-x | pkgs/by-name/fu/fupdate-flake/fupdate-flake.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/by-name/fu/fupdate-flake/fupdate-flake.sh b/pkgs/by-name/fu/fupdate-flake/fupdate-flake.sh index cee0af98..dd475cf3 100755 --- a/pkgs/by-name/fu/fupdate-flake/fupdate-flake.sh +++ b/pkgs/by-name/fu/fupdate-flake/fupdate-flake.sh @@ -58,7 +58,7 @@ upfind() { get_storage_path() { update_script="$(realpath "$1")" - storage_path="$XDG_DATE_HOME/fupdate-flake/$update_script" + storage_path="$XDG_DATA_HOME/fupdate-flake/$update_script" echo "$storage_path" } |