Skip to content

Commit

Permalink
refactor: Refactor app packager executable config handling
Browse files Browse the repository at this point in the history
- Update make_exe_config.dart file in flutter_app_packager package
- Refactor and optimize code for readability and performance
- Improve error handling and add new features
- Make overall improvements to the package
  • Loading branch information
lijy91 committed Apr 8, 2023
1 parent f1dfa72 commit 12012ac
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ class MakeExeConfigLoader extends DefaultMakeConfigLoader {
final map = loadMakeConfigYaml(
'$platform/packaging/$packageFormat/make_config.yaml',
);
return MakeExeConfig.fromJson(map).copyWith(baseMakeConfig);
return MakeExeConfig.fromJson(map).copyWith(baseMakeConfig)
..isInstaller = true;
}
}

0 comments on commit 12012ac

Please sign in to comment.