Skip to content

Commit

Permalink
build now copies releases to their own location
Browse files Browse the repository at this point in the history
  • Loading branch information
Draque Thompson committed Jun 14, 2020
1 parent cea9322 commit 6864ae4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,6 +550,10 @@ def copyInstaller(source):
elif osString == osxString:
insFile = OSX_INS_NAME

# release candidates copied to their own location
if IS_RELEASE:
copyDestination = copyDestination + separatorCharacter + 'Release'

destination = copyDestination + separatorCharacter + insFile
print('Copying installer to ' + destination)
shutil.copy(source, destination)
Expand Down

0 comments on commit 6864ae4

Please sign in to comment.