9 lines
251 B
Batchfile
9 lines
251 B
Batchfile
@echo off
|
|
chcp 65001 >nul
|
|
cd /d "%~dp0"
|
|
if exist "python\python.exe" (set PY=python\python.exe) else (set PY=python)
|
|
echo Starting Anisong Organizer web UI...
|
|
echo (Close the browser page to exit.)
|
|
%PY% app\anime_sorter.py --web
|
|
if errorlevel 1 pause
|