Skip to content

Commit

Permalink
[flutter_tool] Fix fuchsia_reload command for new .packages location (f…
Browse files Browse the repository at this point in the history
  • Loading branch information
zanderso authored and pylaligand committed Nov 10, 2017
1 parent 9ae893b commit f993cc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ class FuchsiaReloadCommand extends FlutterCommand {
throwToolExit('Couldn\'t find application entry point at $_target.');

final String packagesFileName = '${_projectName}_dart_package.packages';
_dotPackagesPath = '$_fuchsiaRoot/out/$_buildType/gen/$_projectRoot/$packagesFileName';
_dotPackagesPath = '$_fuchsiaRoot/out/$_buildType/dartlang/gen/$_projectRoot/$packagesFileName';
if (!_fileExists(_dotPackagesPath))
throwToolExit('Couldn\'t find .packages file at $_dotPackagesPath.');

Expand Down

0 comments on commit f993cc3

Please sign in to comment.