Fix previous commit

I forgot to remove a sparkle reference in the build script.
This commit is contained in:
Virgil Dupras 2016-11-23 20:21:53 -05:00
parent 79e99db1d3
commit e0281dd740
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ def build_cocoa(dev):
image_path = 'cocoa/dupeguru.icns'
resources = [image_path, 'cocoa/dsa_pub.pem', 'build/dg_cocoa.py', 'build/help']
app.copy_resources(*resources, use_symlinks=dev)
app.copy_frameworks('build/Python', sparkle_framework_path)
app.copy_frameworks('build/Python')
print("Creating the run.py file")
tmpl = open('cocoa/run_template.py', 'rt').read()
run_contents = tmpl.replace('{{app_path}}', app.dest)