Closed bytemain closed 3 years ago
because commandArgs is Array, so if commandArgs = ["-m", "-s"];
commandArgs
commandArgs = ["-m", "-s"];
then the args = [ ["-m", "-s"] ], and the execute not handle it, so stackwalk will fail and exit
args = [ ["-m", "-s"] ]
because
commandArgs
is Array, so ifcommandArgs = ["-m", "-s"];
then the
args = [ ["-m", "-s"] ]
, and the execute not handle it, so stackwalk will fail and exit