From 4e7a26e7101cac387da1712c7d8a3050b2945691 Mon Sep 17 00:00:00 2001 From: Cornelius Mika Date: Thu, 17 Aug 2017 10:16:29 +0200 Subject: [PATCH] home-environment: replace superfluous spaces in debug messages (cherry picked from commit 3dba6fc95c2f3a3a34ffaf674c36191ba559cf1a) --- modules/home-environment.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/home-environment.nix b/modules/home-environment.nix index 02bc551ed..80092c6e6 100644 --- a/modules/home-environment.nix +++ b/modules/home-environment.nix @@ -309,11 +309,11 @@ in relativePath="''${sourcePath#$oldGenFiles/}" targetPath="$HOME/$relativePath" if [[ -e "$newGenFiles/$relativePath" ]] ; then - $VERBOSE_ECHO "Checking $targetPath exists" + $VERBOSE_ECHO "Checking $targetPath: exists" elif [[ ! "$(readlink "$targetPath")" =~ "${pattern}" ]] ; then warnEcho "Path '$targetPath' not link into Home Manager generation. Skipping delete." else - $VERBOSE_ECHO "Checking $targetPath gone (deleting)" + $VERBOSE_ECHO "Checking $targetPath: gone (deleting)" $DRY_RUN_CMD rm $VERBOSE_ARG "$targetPath" # Recursively delete empty parent directories.