From 71f75df8f1e99984c2dadb257d2c97d771af277d Mon Sep 17 00:00:00 2001 From: Christy Jacob Date: Fri, 8 Sep 2023 04:11:00 +0000 Subject: [PATCH] fix: update dart commads --- src/Detector/Adapter/Dart.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Detector/Adapter/Dart.php b/src/Detector/Adapter/Dart.php index 271d69f1..66cf74f5 100644 --- a/src/Detector/Adapter/Dart.php +++ b/src/Detector/Adapter/Dart.php @@ -37,12 +37,12 @@ public function getFiles(): array public function getInstallCommand(): string { - return 'flutter pub get'; + return 'dart pub get'; } public function getBuildCommand(): string { - return 'flutter build'; + return 'dart build'; } public function getEntryPoint(): string