Skip to content

Commit

Permalink
起動オプションを VirtualCast.exe に引き継ぐようにした
Browse files Browse the repository at this point in the history
将来的に VirtualCast.exe に起動オプションが実装されたときのため。
  • Loading branch information
esperecyan committed Sep 5, 2018
1 parent 0278987 commit 792c162
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion バーチャルキャストを起動.js.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,11 @@ if (inputFile) {
return;
}

Shell.Run('"' + folder.Path + '\\' + EXE_FILE_NAME + '"');
var command = '"' + folder.Path + '\\' + EXE_FILE_NAME + '"';
for (var i = 0, l = WSH.Arguments.length; i < l; i++) {
command += ' ' + WSH.Arguments(i);
}
Shell.Run(command);
})();


Expand Down

0 comments on commit 792c162

Please sign in to comment.