Skip to content

Commit

Permalink
PKG: not moving to outer folder for dist of standalone
Browse files Browse the repository at this point in the history
  • Loading branch information
peircej committed Jul 2, 2024
1 parent 31dd3a3 commit f2c61de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion building/apple_sign.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def dmgStapleInside(self):

def dmgCompress(self):
dmgFilename = str(self.appFile).replace(".app", "_rw.dmg")
dmgFinalFilename = finalDistFolder/(f"StandalonePsychoPy-{self.version}-macOS.dmg")
dmgFinalFilename = self.appFile.parent / f"StandalonePsychoPy-{self.version}-macOS.dmg"
# remove previous file if it's there
if Path(dmgFinalFilename).exists():
os.remove(dmgFinalFilename)
Expand Down

0 comments on commit f2c61de

Please sign in to comment.