Skip to content

Commit

Permalink
CI: Fixed package.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Dax89 committed Mar 5, 2019
1 parent 8de174a commit 6eb23c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/package.py
Expand Up @@ -10,10 +10,10 @@
if OS_NAME == "Windows":
shutil.copy("LibREDasm.dll", "../deploy")
shutil.copy("REDasm.exe", "../deploy")
else if OS_NAME == "Linux":
elif OS_NAME == "Linux":
shutil.copy("LibREDasm.so", "../deploy")
shutil.copy("REDasm", "../deploy")
else if OS_NAME == "Darwin":
elif OS_NAME == "Darwin":
shutil.copy("LibREDasm.dylib", "../deploy")
shutil.copy("REDasm", "../deploy")

Expand Down

0 comments on commit 6eb23c5

Please sign in to comment.