Skip to content

Commit c8c0831

Browse files
committed
Check pip
1 parent 7bee42e commit c8c0831

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

scripts/spell-check.cmd

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
@ECHO OFF
22

3+
pip --version || pip3 --version
4+
IF %ERRORLEVEL% NEQ 0 (
5+
cls
6+
ECHO Please install Python from https://www.python.org/downloads/ and Pip following https://pip.pypa.io/en/stable/installation/
7+
EXIT /B
8+
)
9+
10+
cls
311
codespell --version
412
IF %ERRORLEVEL% NEQ 0 (
513
ECHO Installing codespell

0 commit comments

Comments
 (0)