Procházet zdrojové kódy

Tiny fixes in bootstrap script for the dotfiles

Emmanuel Bouthenot před 11 roky
rodič
revize
b6e1853633
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      .zsh.d/bin/dotfiles-bootstrap

+ 1 - 1
.zsh.d/bin/dotfiles-bootstrap

@@ -13,7 +13,7 @@ else
 fi
 
 printf "Copying config files in home directory '%s':\n" "${HOME}"
-find "${DOTFILES_DIR}" -maxdepth 1 -mindepth 1 | \ 
+find "${DOTFILES_DIR}" -maxdepth 1 -mindepth 1 | \
     while read d ; do
         printf "\t'%s' -> '%s/%s' ... " "${d}" "${HOME}" "$(basename "${d}")"
         if mv -f "${d}" "${HOME}" >/dev/null 2>&1 ; then