From e4b1ab7aa3ce288301eddc004762f487999c8a50 Mon Sep 17 00:00:00 2001 From: Vincenzo Palazzo Date: Mon, 26 Feb 2024 23:00:05 +0100 Subject: [PATCH] Revert "install command: add -T option to cp to not create nested folders on duplicate calls" This reverts commit 70de208c89165ee938a8b41b3d476783d83bdd1c. --- coffee_core/src/coffee.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coffee_core/src/coffee.rs b/coffee_core/src/coffee.rs index 756a3ad..d8ded7c 100644 --- a/coffee_core/src/coffee.rs +++ b/coffee_core/src/coffee.rs @@ -288,7 +288,7 @@ impl PluginManager for CoffeeManager { old_root_path, new_root_path ); - let script = format!("cp -r -T {old_root_path} {new_root_path}"); + let script = format!("cp -r {old_root_path} {new_root_path}"); sh!(self.config.root_path.clone(), script, verbose); log::debug!( "Done! copying directory from {} inside the new one {}",