Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion carthage_base/pki.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async def _resolve_args(self, instance):
ainjector,
item=[self.dns_name, self.cert, self.key, self.ca],
args={})
results = tuple((relative_path(x) if x is not None else None) for x in results)
results = tuple([results[0]] + [(relative_path(x) if x is not None else None) for x in results[1:]])
return results

async def func(self, instance, pki):
Expand Down