1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-16 12:51:11 +00:00

remove cp as a dependency

This commit is contained in:
deadc0de6
2020-05-31 11:06:31 +02:00
parent 1cbde27ed3
commit 18a61bce60

View File

@@ -228,7 +228,7 @@ def get_module_from_path(path):
def dependencies_met(): def dependencies_met():
"""make sure all dependencies are 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!' err = 'The tool \"{}\" was not found in the PATH!'
for dep in deps: for dep in deps:
if not which(dep): if not which(dep):