We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7c01db commit e25e31eCopy full SHA for e25e31e
2 files changed
setup.bat
@@ -9,6 +9,10 @@ CALL .venv\Scripts\activate.bat
9
pip install --upgrade pip
10
pip install pre-commit
11
12
+IF EXIST requirements.txt (
13
+ pip install -r requirements.txt
14
+)
15
+
16
pre-commit install
17
-ECHO Setup complete. pre-commit is active.
18
+ECHO Setup complete
setup.sh
@@ -11,6 +11,10 @@ source .venv/bin/activate
+if [ -f "requirements.txt" ]; then
+fi
19
-echo "Setup complete. pre-commit is active."
20
+echo "Setup complete"
0 commit comments