From 87cb964a9dadcc03b3fb870774077af9caa654fb Mon Sep 17 00:00:00 2001 From: godofredoc <54371434+godofredoc@users.noreply.github.com> Date: Fri, 17 Jul 2020 09:46:03 -0700 Subject: [PATCH] Use device-finder instead of dev_finder is flutter code. (#61646) --- dev/bots/run_fuchsia_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/bots/run_fuchsia_tests.sh b/dev/bots/run_fuchsia_tests.sh index c706c50a16..cb08647821 100755 --- a/dev/bots/run_fuchsia_tests.sh +++ b/dev/bots/run_fuchsia_tests.sh @@ -40,7 +40,7 @@ fi reboot() { # note: this will set an exit code of 255, which we can ignore. echo "$(date) START:REBOOT ------------------------------------------" - $script_dir/fuchsia_ctl -d $device_name --dev-finder-path $script_dir/dev_finder ssh --identity-file $pkey -c "dm reboot-recovery" || true + $script_dir/fuchsia_ctl -d $device_name --device-finder-path $script_dir/device-finder ssh --identity-file $pkey -c "dm reboot-recovery" || true echo "$(date) END:REBOOT --------------------------------------------" }