-
-
Notifications
You must be signed in to change notification settings - Fork 550
/
extractcode.bat
32 lines (24 loc) · 1.01 KB
/
extractcode.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@echo OFF
@rem Copyright (c) nexB Inc. and others. All rights reserved.
@rem SPDX-License-Identifier: Apache-2.0
@rem See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
@rem ScanCode is a trademark of nexB Inc.
@rem See https://github.com/nexB/scancode-toolkit for support or download.
@rem See https://aboutcode.org for more information about nexB OSS projects.
@rem A wrapper to ScanCode command line entry point
set SCANCODE_ROOT_DIR=%~dp0
set SCANCODE_CONFIGURED_PYTHON=%SCANCODE_ROOT_DIR%venv\Scripts\python.exe
if not exist "%SCANCODE_CONFIGURED_PYTHON%" goto configure
goto scancode
:configure
echo * Configuring ScanCode for first use...
set CFG_QUIET=-qq
call "%SCANCODE_ROOT_DIR%configure"
@rem Return a proper return code on failure
if %errorlevel% neq 0 (
exit /b %errorlevel%
)
:scancode
@rem without this things may not always work on Windows 10, but this makes things slower
set PYTHONDONTWRITEBYTECODE=1
"%SCANCODE_ROOT_DIR%venv\Scripts\extractcode" %*