Skip to content

Commit

Permalink
fix: Use actual package name (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
codekeyz authored Dec 11, 2024
1 parent 74e263d commit 5f2b5a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/globe_cli/lib/src/commands/update.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class UpdateCommand extends BaseGlobeCommand {
@override
FutureOr<int>? run() async {
final isUpToDate = await updater.isUpToDate(
packageName: package_info.name,
packageName: package_info.packageName,
currentVersion: package_info.version,
);

Expand Down
1 change: 1 addition & 0 deletions packages/globe_cli/lib/src/package_info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ const version = '0.0.13';
const description =
'The global deployment platform for Dart & Flutter applications.';
const executable = 'globe';
const packageName = 'globe_cli';

0 comments on commit 5f2b5a2

Please sign in to comment.