Commit ·
03e9bd3
1
Parent(s): ca7ab25
Fix run target in Makefile to execute app.py instead of main.py
Browse files
Makefile
CHANGED
|
@@ -127,7 +127,7 @@ install-voicevox-core-module: venv
|
|
| 127 |
# Run the application
|
| 128 |
run: venv
|
| 129 |
@echo "Running application..."
|
| 130 |
-
$(VENV_PYTHON)
|
| 131 |
|
| 132 |
# Run static analysis (lint)
|
| 133 |
lint: setup-lint
|
|
|
|
| 127 |
# Run the application
|
| 128 |
run: venv
|
| 129 |
@echo "Running application..."
|
| 130 |
+
$(VENV_PYTHON) app.py
|
| 131 |
|
| 132 |
# Run static analysis (lint)
|
| 133 |
lint: setup-lint
|