summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-10-16 17:25:53 -0700
committerDylan Baker <dylan@pnwbakers.com>2017-10-26 11:30:56 -0700
commit8da36268d44a15ca8b02709089a26ac5e678b139 (patch)
tree38bf66f230a2f327e040a8d071881ddf607c046e /bin
parente640b3fe139d29d01d5dc89cfbd2c06756b1d8d8 (diff)
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>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/install_megadrivers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/install_megadrivers.py b/bin/install_megadrivers.py
index a5a46201ccb..a98d7dd177b 100755
--- a/bin/install_megadrivers.py
+++ b/bin/install_megadrivers.py
@@ -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)