Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Pixel-Master committed Mar 20, 2024
1 parent 7801dc6 commit 5da585e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,22 +79,22 @@ def main():
"NSHighResolutionCapable": True}, fp=plist)

# This is temporary, as long as I don't have an Apple Developer ID, just remove the signature
run(["codesign", "--remove-signature", "dist/File Find.app"])
run(["codesign", "-s", "-", "-f", os.path.join("dist", "File Find.app")])

# Building DMG
print("\n\nBuilding DMG...")

run(
["create-dmg",
"--volname", "File Find",
"--volicon", "assets/icon.icns",
"--background", "assets/background.png",
"--volicon", os.path.join("assets", "icon.icns"),
"--background", os.path.join("assets", "background.png"),
"--window-pos", "200", "120",
"--window-size", "800", "400",
"--icon-size", "100",
"--icon", "dist/File Find.app", "200", "190",
"--icon", os.path.join("dist", "File Find.app"), "200", "190",
"--app-drop-link", "600", "190",
"dist/File Find.dmg",
os.path.join("dist", "File Find.dmg"),
"dist"])

# On Linux
Expand Down

0 comments on commit 5da585e

Please sign in to comment.