mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 09:52:28 +00:00
16 lines
271 B
Go
16 lines
271 B
Go
|
|
package profile
|
||
|
|
|
||
|
|
func (profile *Profile) Generate(compress_db bool) (err error) {
|
||
|
|
if err = profile.CreateIDAFiles(); err != nil {
|
||
|
|
return
|
||
|
|
}
|
||
|
|
|
||
|
|
if profile.Info.OS == "windows" {
|
||
|
|
if err = profile.CreateX64dbgFiles(compress_db); err != nil {
|
||
|
|
return
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
return
|
||
|
|
}
|