From 645149d77b8c604e10e94e2764ff2c782780242e Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Sat, 16 May 2020 18:35:05 -0700 Subject: [PATCH] files: fix warning message PR #1241 --- modules/files.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/files.nix b/modules/files.nix index ae48e30d..c2992479 100644 --- a/modules/files.nix +++ b/modules/files.nix @@ -169,7 +169,7 @@ in if [[ -e "$newGenFiles/$relativePath" ]] ; then $VERBOSE_ECHO "Checking $targetPath: exists" elif [[ ! "$(readlink "$targetPath")" == $homeFilePattern ]] ; then - warnEcho "Path '$targetPath' not link into Home Manager generation. Skipping delete." + warnEcho "Path '$targetPath' does not link into a Home Manager generation. Skipping delete." else $VERBOSE_ECHO "Checking $targetPath: gone (deleting)" $DRY_RUN_CMD rm $VERBOSE_ARG "$targetPath"