diff options
| author | Jordan <github@psifertex.com> | 2022-07-06 11:04:51 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-06 11:04:51 -0400 |
| commit | c7854604f7610fbde01a981d85c0cad3df29ceae (patch) | |
| tree | 7a67cf00c699645e7068e16493b38ea3d106a728 | |
| parent | 14ac2b7c49648d17d7d06e28970a280619015e8b (diff) | |
remove failure case for virtual detection since it is now automatic
| -rwxr-xr-x | scripts/install_api.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scripts/install_api.py b/scripts/install_api.py index e19c060c..bc66badf 100755 --- a/scripts/install_api.py +++ b/scripts/install_api.py @@ -30,9 +30,6 @@ INSTALL_VENV = False if sys.prefix == sys.base_prefix: if os.environ.get('VIRTUAL_ENV'): INSTALL_VENV = True - else: - print("Error: venv installation requested without an active python3 venv.") - sys.exit(1) try: binaryninja = importlib.util.find_spec('binaryninja') |
