From 86491aa27525dc32132cbe0c0e2972e8b3b7ba48 Mon Sep 17 00:00:00 2001 From: greateggsgreg Date: Sat, 3 Mar 2018 15:47:44 -0500 Subject: [PATCH] Changed console scripts entry points to use names that dont conflict with android's existing tool names --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 47c88f8..af56556 100644 --- a/setup.py +++ b/setup.py @@ -60,8 +60,8 @@ ], entry_points={ "console_scripts": [ - "adb = adb.adb_debug:main", - "fastboot = adb.fastboot_debug:main", + "pyadb = adb.adb_debug:main", + "pyfastboot = adb.fastboot_debug:main", ], }