Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: OscarL <oscar.lesta@gmail.com>
  • Loading branch information
pulkomandy and OscarL committed Aug 29, 2024
1 parent 0504b5a commit 4769c19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HaikuPorter/Port.py
Original file line number Diff line number Diff line change
Expand Up @@ -712,13 +712,13 @@ def extractPatchset(self):
for s, source in enumerate(self.sources, 1):
if s == 1:
patchSetFileName = self.baseName + '-' + self.version + '.patchset'
archPatchSetFileName = (self.baseName + '-' + self.version + '-'
archPatchSetFileName = (self.name + '-' + self.version + '-'
+ self.targetArchitecture
+ '.patchset')
else:
patchSetFileName = (self.baseName + '-' + self.version + '-source'
+ str(s) + '.patchset')
archPatchSetFileName = (self.baseName + '-' + self.version + '-'
archPatchSetFileName = (self.name + '-' + self.version + '-'
+ self.targetArchitecture + '-source'
+ str(s) + '.patchset')
patchSetFilePath = self.patchesDir + '/' + patchSetFileName
Expand Down

0 comments on commit 4769c19

Please sign in to comment.