update apt

main
Dragan Filipovic 2022-12-31 10:15:28 +01:00
parent b65c6688d1
commit 2121ba96bc
2 changed files with 2 additions and 7 deletions

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

View File

@ -10,13 +10,8 @@ const validateRsync = (callback = () => {}) => {
}
console.log('⚠️ [CLI] Rsync doesn\'t exists. Start installation with "apt-get" \n');
try {
execSync("sudo apt-get update", { stdio: 'inherit' });
} catch (e) {
console.log( "⚠️ [CLI] Cant run . apt-get update. Skipping ...". e.message);
}
exec("sudo apt-get --no-install-recommends install rsync", { stdio: 'inherit' }, (err, data, stderr) => {
exec("sudo apt-get update && sudo apt-get --no-install-recommends install rsync", (err, data, stderr) => {
if (err) {
console.log("⚠️ [CLI] Rsync installation failed. Aborting ... ", err.message);
process.abort();