Пример #1
0
 /// <summary>
 ///     Checks the output of running a Vagrant command to see if there were any errors or not to guess if the command ran
 ///     successfully or not
 /// </summary>
 private bool CommandWasSuccess(VagrantOutput output)
 {
     return(output.ExitCode == 0 && output.Error.Length == 0 ? true : false);
 }
Пример #2
0
 /// <summary>
 ///     Checks the output of running a Vagrant command to see if there were any errors or not to guess if the command ran
 ///     successfully or not
 /// </summary>
 private bool CommandWasSuccess(VagrantOutput output)
 {
     return (output.ExitCode == 0 && output.Error.Length == 0 ? true : false);
 }