Use device-finder instead of dev_finder is flutter code. (#61646)

This commit is contained in:
godofredoc 2020-07-17 09:46:03 -07:00 committed by GitHub
parent 55176c4d6f
commit 87cb964a9d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 --------------------------------------------"
}