We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bee42e commit c8c0831Copy full SHA for c8c0831
scripts/spell-check.cmd
@@ -1,5 +1,13 @@
1
@ECHO OFF
2
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
11
codespell --version
12
IF %ERRORLEVEL% NEQ 0 (
13
ECHO Installing codespell
0 commit comments