More tweaks [skip ci]

This commit is contained in:
Chris Miles 2020-05-11 03:37:09 -05:00 committed by GitHub
parent d534d345d5
commit f785dc232b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2006,7 +2006,7 @@ sub lua_modules_fetch
if (!-e $destination_file) {
copy_file($staged_file, $destination_file);
print "[Install] Installing :: '" . $destination_file . "'\n";
print "[Install] Installing [" . $destination_file . "]\n";
$fc++;
}
else {
@ -2023,7 +2023,7 @@ sub lua_modules_fetch
copy_file($destination_file, $backup_dest);
#::: Copy staged to running
copy($staged_file, $destination_file);
print "[Install] Installing :: '" . $destination_file . "'\n\n";
print "[Install] Installing [" . $destination_file . "]\n\n";
}
$fc++;
}
@ -2068,7 +2068,7 @@ sub plugins_fetch
if (!-e $destination_file) {
copy_file($staged_file, $destination_file);
print "[Install] Installing :: '" . $destination_file . "'\n";
print "[Install] Installing [" . $destination_file . "]\n";
$fc++;
}
else {
@ -2085,7 +2085,7 @@ sub plugins_fetch
copy_file($destination_file, $backup_dest);
#::: Copy staged to running
copy($staged_file, $destination_file);
print "[Install] Installing :: '" . $destination_file . "'\n\n";
print "[Install] Installing [" . $destination_file . "]\n\n";
}
$fc++;
}