File: install_full.bat

package info (click to toggle)
azure-cli 2.82.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,359,416 kB
  • sloc: python: 1,910,381; sh: 1,343; makefile: 406; cs: 145; javascript: 74; sql: 37; xml: 21
file content (14 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Rem This script is the windows counter-part to ./install_full.sh

pushd %~dp0..

set cmd="dir .\src\ /b | findstr /v azure-cli-testsdk"
for /f "tokens=*" %%e in (' %cmd% ') do (
    pip install --no-deps .\src\%%e
)

set cmd="python .\scripts\get-python-version.py"
for /f "tokens=*" %%v in (' %cmd% ') do set SHORT_PY_VER=%%v
pip install -r .\src\azure-cli\requirements.%SHORT_PY_VER%.Windows.txt

popd