Skip to content

Commit

Permalink
Merge pull request #45 from imcnanie/master
Browse files Browse the repository at this point in the history
del absolute paths that broke firmware downloader
  • Loading branch information
tcr3dr authored Jun 13, 2016
2 parents 0e70b6c + 3db2369 commit 92540a8
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions soloutils/flash.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,13 +333,9 @@ def main(args):
soloutils.await_net()

if args['drone'] or args['both']:
# drone_file, drone_md5 = download_firmware('drone', version)
drone_file = '/Users/timryan/Desktop/test/solo_0.0.0.tar.gz'
drone_md5 = '/Users/timryan/Desktop/test/solo_0.0.0.tar.gz.md5'
drone_file, drone_md5 = download_firmware('drone', version)
if args['controller'] or args['both']:
# controller_file, controller_md5 = download_firmware('controller', version)
controller_file = '/Users/timryan/Desktop/test/controller_0.0.0.tar.gz'
controller_md5 = '/Users/timryan/Desktop/test/controller_0.0.0.tar.gz.md5'
controller_file, controller_md5 = download_firmware('controller', version)

errprinter('')
errprinter('please power on ' + group + ' and connect your computer')
Expand Down

0 comments on commit 92540a8

Please sign in to comment.