Skip to content

Commit 12012ac

Browse files
committedApr 8, 2023
refactor: Refactor app packager executable config handling
- 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
1 parent f1dfa72 commit 12012ac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎packages/flutter_app_packager/lib/src/makers/exe/make_exe_config.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ class MakeExeConfigLoader extends DefaultMakeConfigLoader {
107107
final map = loadMakeConfigYaml(
108108
'$platform/packaging/$packageFormat/make_config.yaml',
109109
);
110-
return MakeExeConfig.fromJson(map).copyWith(baseMakeConfig);
110+
return MakeExeConfig.fromJson(map).copyWith(baseMakeConfig)
111+
..isInstaller = true;
111112
}
112113
}

0 commit comments

Comments
 (0)
Please sign in to comment.