Skip to content

Commit

Permalink
refactor: change messaging of already exists
Browse files Browse the repository at this point in the history
  • Loading branch information
cabljac committed Apr 7, 2022
1 parent 28e7562 commit c5ea85e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/flutterfire_cli/lib/src/common/exception.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class FirebaseOptionsAlreadyExistsException implements FlutterFireException {

@override
String toString() {
return 'FirebaseOptionsAlreadyExistsException: Firebase options file ${AnsiStyles.cyan(filePath)} already exists.';
return 'FirebaseOptionsAlreadyExistsException: Firebase options file ${AnsiStyles.cyan(filePath)} is already up to date.';
}
}

Expand All @@ -70,7 +70,7 @@ class FirebaseAppIDAlreadyExistsException implements FlutterFireException {

@override
String toString() {
return 'FirebaseAppIDAlreadyExistsException: Firebase app ID file ${AnsiStyles.cyan(filePath)} already exists.';
return 'FirebaseAppIDAlreadyExistsException: Firebase app ID file ${AnsiStyles.cyan(filePath)} is already up to date.';
}
}

Expand Down

0 comments on commit c5ea85e

Please sign in to comment.