@@ -91,9 +91,6 @@ impl BundleTarget {
9191pub struct DebConfig {
9292 /// The list of deb dependencies your application relies on.
9393 pub depends : Option < Vec < String > > ,
94- /// Enable the boostrapper script.
95- #[ serde( default ) ]
96- pub use_bootstrapper : bool ,
9794 /// The files to include on the package.
9895 #[ serde( default ) ]
9996 pub files : HashMap < PathBuf , PathBuf > ,
@@ -136,9 +133,6 @@ pub struct MacConfig {
136133 pub exception_domain : Option < String > ,
137134 /// The path to the license file to add to the DMG bundle.
138135 pub license : Option < String > ,
139- /// Enable the boostrapper script.
140- #[ serde( default ) ]
141- pub use_bootstrapper : bool ,
142136 /// Identity to use for code signing.
143137 pub signing_identity : Option < String > ,
144138 /// Provider short name for notarization.
@@ -154,7 +148,6 @@ impl Default for MacConfig {
154148 minimum_system_version : minimum_system_version ( ) ,
155149 exception_domain : None ,
156150 license : None ,
157- use_bootstrapper : false ,
158151 signing_identity : None ,
159152 provider_short_name : None ,
160153 entitlements : None ,
0 commit comments