Skip to content

Commit

Permalink
More cleaning up build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
gershnik committed May 29, 2024
1 parent a17fb0b commit 2155dc5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions installers/mac/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

sys.path.append(str(mydir.absolute().parent))

from common import parseCommandLine, getVersion, buildCode, installCode, copyTemplated, uploadResults
from common import parseCommandLine, getVersion, buildCode, installCode, copyTemplated

args = parseCommandLine()
srcdir: Path = args.srcdir
Expand Down Expand Up @@ -127,4 +127,5 @@

if args.uploadResults:
subprocess.run(['tar', '-C', builddir, '-czf', workdir.absolute() / f'wsddn-macos-{VERSION}.dSYM.tgz', 'wsddn.dSYM'], check=True)
uploadResults(installer, workdir / f'wsddn-macos-{VERSION}.dSYM.tgz', VERSION)
subprocess.run(['aws', 's3', 'cp', workdir / f'wsddn-macos-{VERSION}.dSYM.tgz', f's3://wsddn-symbols/'], check=True)
subprocess.run(['gh', 'release', 'upload', f'v{VERSION}', installer], check=True)

0 comments on commit 2155dc5

Please sign in to comment.