From d0fcfae785284ba2a5e90ec4f7dc22fb97e8d410 Mon Sep 17 00:00:00 2001 From: sakebook Date: Sun, 10 Jul 2022 18:30:29 +0900 Subject: [PATCH] Fix dart test command --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 5f08969..a716c33 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -29,8 +29,8 @@ switch_working_directory() { test_dart() { echo "Run test for dart" - pub get - pub run test + dart pub get + dart run test } test_flutter() {