From 18a61bce60c30d147f630f74e863a0f29004f34e Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Sun, 31 May 2020 11:06:31 +0200 Subject: [PATCH] remove cp as a dependency --- dotdrop/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotdrop/utils.py b/dotdrop/utils.py index 9c43432..9c4baa1 100644 --- a/dotdrop/utils.py +++ b/dotdrop/utils.py @@ -228,7 +228,7 @@ def get_module_from_path(path): def dependencies_met(): """make sure all dependencies are met""" - deps = ['file', 'diff', 'mkdir', 'cp'] + deps = ['file', 'diff', 'mkdir'] err = 'The tool \"{}\" was not found in the PATH!' for dep in deps: if not which(dep):