diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2017-10-16 17:25:53 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2017-10-26 11:30:56 -0700 |
commit | 8da36268d44a15ca8b02709089a26ac5e678b139 (patch) | |
tree | 38bf66f230a2f327e040a8d071881ddf607c046e /bin | |
parent | e640b3fe139d29d01d5dc89cfbd2c06756b1d8d8 (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-x | bin/install_megadrivers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/install_megadrivers.py b/bin/install_megadrivers.py index a5a46201cc..a98d7dd177 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) |