From 96145d5fdc0d695414f200c2afa372818f4857df Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 30 Dec 2019 16:01:31 -0500 Subject: Fixes * Verbosity++ * If no requirements are present do not to report we are installing some * Redirect all shell output to stderr (need a better way) * implemented file_is_binexec() to avoid running patchelf on generic data files --- src/fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/fs.c') diff --git a/src/fs.c b/src/fs.c index a9438d1..bedfec1 100644 --- a/src/fs.c +++ b/src/fs.c @@ -294,7 +294,7 @@ int rsync(const char *_args, const char *_source, const char *_destination) { strcat(args_combined, _args); } - snprintf(cmd, PATH_MAX, "rsync %s \"%s\" \"%s\"", args_combined, source, destination); + snprintf(cmd, PATH_MAX, "rsync %s \"%s\" \"%s\" 2>&1", args_combined, source, destination); // sanitize command strchrdel(cmd, "&;|"); shell(&proc, SHELL_OUTPUT, cmd); -- cgit