Switched tee to append mode to keep install history for all packages

This commit is contained in:
Pavel Odintsov 2019-07-14 21:10:32 +01:00
parent 2ffe1303f6
commit 43f63398f9

View File

@ -1450,10 +1450,10 @@ sub install_fastnetmon {
system("make $make_options");
} else {
print "Run cmake to generate make file\n";
system("cmake .. $cmake_params 2>&1 | tee $install_log_path");
system("cmake .. $cmake_params 2>&1 | tee -a $install_log_path");
print "Run make to build FastNetMon\n";
system("make $make_options 2>&1 | tee $install_log_path");
system("make $make_options 2>&1 | tee -a $install_log_path");
}
my $fastnetmon_dir = "/opt/fastnetmon";