Skip to content

Commit 16a2c4a

Browse files
committed
chore(scripts): print a message before checking if the package is already published
1 parent d78fb0f commit 16a2c4a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/publish_flutter_quill.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ Future<void> main(List<String> args) async {
6969
'❌ Git working directory is not clean. Commit all changes and try again.');
7070
exit(1);
7171
}
72+
73+
print(
74+
'ℹ️ Checking if the version `$version` is already published on pub.dev...',
75+
);
7276
if (await _isPackageVersionPublished(version)) {
7377
print(
7478
'❌ The version `$version` of the `$_packageName` package is already published on pub.dev.');

0 commit comments

Comments
 (0)