示例#1
0
        protected bool RunCommand(IEnumerable <string> arguments, bool isVerbose)
        {
            var exitCode     = _commandWrapper.Run(arguments, isVerbose);
            var isSuccessful = exitCode == 0;

            return(isSuccessful);
        }
示例#2
0
 protected bool RunCommand(IEnumerable <string> arguments, bool isVerbose)
 {
     return(_commandWrapper.Run(arguments, isVerbose));
 }