install_megadrivers: print the full path with driver name

Instead of just the path.

Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
Dylan Baker 2017-10-16 17:25:53 -07:00
parent e640b3fe13
commit 8da36268d4
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ def main():
driver = os.path.join(to, each)
if os.path.exists(driver):
os.unlink(driver)
print('installing {} to {}'.format(args.megadriver, to))
print('installing {} to {}'.format(args.megadriver, driver))
os.link(master, driver)
os.unlink(master)