Skip to content

Commit

Permalink
Update make_release for the new directory layout
Browse files Browse the repository at this point in the history
  • Loading branch information
jpieper committed Jan 14, 2021
1 parent 92b0c21 commit 2e3eeea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions make_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ def main():
run('tools/bazel clean --expunge')
run('tools/bazel build --config=target -c opt //:target')

run(f'cp bazel-bin/moteus/moteus.elf {outdir}/{datestr}-moteus-{git_hash}.elf')
run(f'cp bazel-bin/moteus/can_bootloader.elf {outdir}/{datestr}-bootloader-{git_hash}.elf')
run(f'cp bazel-bin/moteus/power_dist.elf {outdir}/{datestr}-power_dist-{git_hash}.elf')
run(f'cp bazel-bin/fw/moteus.elf {outdir}/{datestr}-moteus-{git_hash}.elf')
run(f'cp bazel-bin/fw/can_bootloader.elf {outdir}/{datestr}-bootloader-{git_hash}.elf')
run(f'cp bazel-bin/fw/power_dist.elf {outdir}/{datestr}-power_dist-{git_hash}.elf')

print()
print('DONE')
Expand Down

0 comments on commit 2e3eeea

Please sign in to comment.