Skip to content

Commit

Permalink
fix: dyld tbd symbol output
Browse files Browse the repository at this point in the history
  • Loading branch information
blacktop committed Mar 29, 2021
1 parent ce2803c commit ad0a705
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/tbd/template.go
@@ -1,12 +1,13 @@
package tbd

const tbdTemplate = `---
const tbdTemplate = `--- !tapi-tbd-v3
archs: [ {{ StringsJoin .Archs ", " }} ]
platform: {{.Platform}}
install-name: {{.Path}}
current-version: {{.Version}}
objc-constraint: none
exports:
- archs: [ {{ StringsJoin .Archs ", " }} ]
symbols: [ {{ StringsJoin .Symbols ", " }} ]
symbols: [ {{ StringsJoin .Symbols ",\n " }} ]
...
`

0 comments on commit ad0a705

Please sign in to comment.