From f785dc232bbb305cbd0f385c257c06e5a06d9e0f Mon Sep 17 00:00:00 2001 From: Chris Miles Date: Mon, 11 May 2020 03:37:09 -0500 Subject: [PATCH] More tweaks [skip ci] --- utils/scripts/eqemu_server.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utils/scripts/eqemu_server.pl b/utils/scripts/eqemu_server.pl index da06bcf8b..92703d4c9 100755 --- a/utils/scripts/eqemu_server.pl +++ b/utils/scripts/eqemu_server.pl @@ -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++; }