getInstructions method

  1. @override
String getInstructions(
  1. BuildContext context,
  2. Release release
)
override

Returns the instructions for manually installing a given release in markdown format.

Throws an UnsupportedError if canPatch returns true.

Implementation

@override
String getInstructions(BuildContext context, Release release) {
  // TODO: verify currentAppImage path

  return AppLocalizations.of(context)!.update_instructions_appImage(
    Platform.resolvedExecutable,
    release.downloads.linux,
  );
}