From 09fc83796c4e73bb18a6a778d4ff78a84ceec646 Mon Sep 17 00:00:00 2001 From: Trysdyn Black Date: Fri, 1 May 2020 19:34:52 -0700 Subject: [PATCH] Fix misleading docstring --- setup_dotfiles.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup_dotfiles.py b/setup_dotfiles.py index b4b6f20..a4a5bcf 100755 --- a/setup_dotfiles.py +++ b/setup_dotfiles.py @@ -52,8 +52,8 @@ def check_and_remove(source, destination, force=False): def install_dotfiles(source_dir, dest_dir, exclusions, force=False): """ - Iterates the files present in source_dir, excluding EXCLUSIONS, and syncs - them to dest_dir, overwriting files that exist if force is true. + Iterates the files present in source_dir, excluding EXCLUSIONS, and symlinks + them in dest_dir, overwriting files that exist if force is true. """ # source_dir needs to end in an / to make replacements work if not source_dir.endswith("/"):