Update installer scripts and docs for Typer CLI

This commit is contained in:
thePR0M3TH3AN
2025-07-10 22:09:49 -04:00
parent d3320d9ff9
commit fd1db2cdde
4 changed files with 30 additions and 8 deletions

View File

@@ -119,6 +119,7 @@ main() {
print_info "Installing/updating Python dependencies from src/requirements.txt..."
pip install --upgrade pip
pip install -r src/requirements.txt
pip install -e .
deactivate
# 7. Create launcher script
@@ -127,7 +128,7 @@ main() {
cat > "$LAUNCHER_PATH" << EOF2
#!/bin/bash
source "$VENV_DIR/bin/activate"
exec python3 "$INSTALL_DIR/src/main.py" "\$@"
exec "$VENV_DIR/bin/python" -m seedpass.cli "\$@"
EOF2
chmod +x "$LAUNCHER_PATH"