installInstructions property

  1. @override
String installInstructions
override

Returns instructions on how to install DCli.

Implementation

@override
String get installInstructions {
  if (core.Settings().isWindows) {
    return 'Run dcli install';
  } else {
    return 'Run sudo -E dcli install';
  }
}