Skip to content

Commit

Permalink
Fixed bug in spec
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Blumberg committed Feb 12, 2019
1 parent 43fc017 commit 0d4af32
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,10 @@ test_script:

after_test:
- "conda list"
- "pyinstaller runsharp/SHARPpy-win7-%ARCH%.spec"
- "move dist\\SHARPpy.exe dist\\SHARPpy%ARCH%.exe"
- "cd runsharp"
- "pyinstaller SHARPpy-win7-%ARCH%.spec"
- "cd .."
# - "move dist\\SHARPpy.exe dist\\SHARPpy%ARCH%.exe"

artifacts:
- path: "dist\\SHARPpy64.exe"
Expand Down
2 changes: 1 addition & 1 deletion runsharp/SHARPpy-osx.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ver_file.write('def get_versions():\n')
ver_file.write(' return ' + ver)
ver_file.close()

def sharppy
del sharppy
import sharppy

# Analyze the SHARPpy package to get dependencies, etc.
Expand Down
2 changes: 1 addition & 1 deletion runsharp/SHARPpy-win7-64.spec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ver_file.write("def get_versions():\n")
ver_file.write(' return ' + ver)
ver_file.close()

def sharppy
del sharppy
import sharppy

a = Analysis(['SHARPpy.py'],
Expand Down

0 comments on commit 0d4af32

Please sign in to comment.