Skip to content

Commit

Permalink
完善啓動脚本 (#20)
Browse files Browse the repository at this point in the history
* 完善啓動脚本
  • Loading branch information
northgreen authored Feb 2, 2024
1 parent 9c1cf56 commit e803e4d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 14 additions & 0 deletions .github/resource/run.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
@echo off
echo installing require
"./bin/python.exe" -m pip install -r ./requirements.txt

for /R ./plugin %%f in (requirements.txt) do (
if exist %%f (
echo %%~dpf | findstr /I /V /C:"\\__pycache__\\" 1>nul
if not errorlevel 1 (
echo Installing packages from: %%f
"./bin/python.exe" -m pip install -r "%%f"
)
)
)

echo starting
"./bin/python.exe" ./
pause
2 changes: 0 additions & 2 deletions ictye-live-dm/depends/logger.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
import logging

import time

import os


Expand Down

0 comments on commit e803e4d

Please sign in to comment.