Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
AttilaTheFun committed Nov 13, 2024
1 parent 4ad1b5c commit e99d2df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apple/internal/docc.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def _docc_archive_impl(ctx):
"{fallback_display_name}": fallback_display_name,
"{platform}": platform.name_in_plist,
"{sdk_version}": str(xcode_config.sdk_version_for_platform(platform)),
"{symbol_graph_dirs}": " ".join([f.short_path for f in symbol_graphs]) if symbol_graphs else "",
"{symbol_graph_dirs}": " ".join([f.path for f in symbol_graphs]) if symbol_graphs else "",
"{target_name}": ctx.attr.name,
"{xcode_version}": str(xcode_config.xcode_version()),
},
Expand Down

0 comments on commit e99d2df

Please sign in to comment.