Skip to content

Commit

Permalink
Ensure to use coreutils in cache logics
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Aug 2, 2023
1 parent bb1645d commit ddca222
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions home-manager/zsh.nix
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
# -C omit to check new functions
compinit -C -d "$dump_path"
else
mkdir -p "$dump_dir"
${lib.getBin pkgs.coreutils}/bin/mkdir -p "$dump_dir"
compinit -d "$dump_path"
touch "$dump_path" # Ensure to update timestamp
${lib.getBin pkgs.coreutils}/bin/touch "$dump_path" # Ensure to update timestamp
fi
}
'';
Expand Down

0 comments on commit ddca222

Please sign in to comment.