mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-08-10 00:52:16 +00:00
Fix spacing of multi-argument %* substitutions
This commit is contained in:
@@ -753,6 +753,9 @@ namespace platf {
|
||||
// All arguments following the target
|
||||
case L'*':
|
||||
for (int i = 1; i < raw_cmd_parts.size(); i++) {
|
||||
if (i > 1) {
|
||||
match_replacement += L' ';
|
||||
}
|
||||
match_replacement += raw_cmd_parts.at(i);
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user