From cc02c8d27e858cf85046c73fd4d7bce48df1749f Mon Sep 17 00:00:00 2001 From: Ian McKellar Date: Tue, 2 May 2023 16:44:37 -0700 Subject: [PATCH] [fuchsia] fix run_integration_test.sh (flutter/engine#41668) This updates the `fx serve` check to reflect the current state of Fuchsia's package serving. --- .../src/flutter/tools/fuchsia/devshell/run_integration_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/tools/fuchsia/devshell/run_integration_test.sh b/engine/src/flutter/tools/fuchsia/devshell/run_integration_test.sh index 831f077a9ae..bdd51edbb12 100755 --- a/engine/src/flutter/tools/fuchsia/devshell/run_integration_test.sh +++ b/engine/src/flutter/tools/fuchsia/devshell/run_integration_test.sh @@ -34,7 +34,7 @@ then fi # This script currently requires running `fx serve`. -if [[ -z "$(pgrep -f 'pm serve')" ]] +if [[ -z "$(pgrep -f 'package-tool')" ]] then engine-error "This script currently requires running 'fx serve' first." exit 1