feat: add support for Flutter Linux, macOS and Windows (#10)

This commit is contained in:
Aleksey Kulikov 2021-10-30 13:54:25 +03:00 committed by GitHub
parent a71bb14b86
commit c8895524be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 401 additions and 18 deletions

View file

@ -67,7 +67,15 @@ DynamicLibrary loadLibrary(String name) {
'To download the library, please run the following command from the '
'root of your project:',
);
logger.stdout('${ansi.yellow}dart run libgit2dart:setup${ansi.none}');
logger.stdout(
'${ansi.yellow}dart run libgit2dart:setup${ansi.none} for '
'dart application',
);
logger.stdout(ansi.none);
logger.stdout(
'${ansi.yellow}flutter pub run libgit2dart:setup${ansi.none} for '
'flutter application',
);
logger.stdout(ansi.none);
rethrow;
}