[Scummvm-git-logs] scummvm master -> 33566c0847a5164d7522a070034ea8b50a75a8b7

sev- sev at scummvm.org
Sat Jul 31 16:23:06 UTC 2021


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
33566c0847 DEVTOOLS: COMPANION: Fix processing '*' in the source file names


Commit: 33566c0847a5164d7522a070034ea8b50a75a8b7
    https://github.com/scummvm/scummvm/commit/33566c0847a5164d7522a070034ea8b50a75a8b7
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2021-07-31T18:22:55+02:00

Commit Message:
DEVTOOLS: COMPANION: Fix processing '*' in the source file names

Changed paths:
    devtools/dumper-companion.pl


diff --git a/devtools/dumper-companion.pl b/devtools/dumper-companion.pl
index da015e4c5d..95bc704c44 100755
--- a/devtools/dumper-companion.pl
+++ b/devtools/dumper-companion.pl
@@ -187,6 +187,8 @@ sub processIso($) {
 				$prevlen = length "$dir$decfname";
 				flush STDOUT;
 
+				$fname =~ s/\*/\\\*/g; # Files cound have stars in them, escape, so shell is happy
+
 				if ($res != 0) {
 					system1("hcopy -m -- \"$mdir$fname\" \"$outPath$dir$decfname\"") == 0 or die "Can't execute hcopy";
 				} else {




More information about the Scummvm-git-logs mailing list