From 5194adf14510d5ed93dc25da66405bfabe765752 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Mon, 18 Aug 2025 17:02:23 -0400 Subject: [PATCH] Check CLI import after installation --- scripts/install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install.sh b/scripts/install.sh index 4e25a2d..5013622 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -188,6 +188,11 @@ main() { else pip install -e . fi + + if ! "$VENV_DIR/bin/python" -c "import seedpass.cli; print('ok')"; then + print_error "SeedPass CLI import check failed." + fi + deactivate # 7. Create launcher script