getInstructions method
- BuildContext context,
- 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,
);
}