From dd079bdbc7ab6a49c38637e7f056a4cf6e3b9f0e Mon Sep 17 00:00:00 2001 From: Wei Hong Date: Sat, 6 Jun 2026 17:40:27 +0800 Subject: [PATCH] Update missing packages. --- build.sh | 4 ++++ init.sh | 5 ++++- requirements.txt | 3 ++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index e765985..be99608 100755 --- a/build.sh +++ b/build.sh @@ -1,3 +1,7 @@ +if [ ! -d "$DIR" ]; then + uv venv +fi + echo "Checking environment..." if command -v nuitka &> /dev/null; then echo "Nuitka installed" diff --git a/init.sh b/init.sh index 55fdeb8..b96c3ef 100755 --- a/init.sh +++ b/init.sh @@ -6,5 +6,8 @@ else exit 1 fi -uv venv + +if [ ! -d "$DIR" ]; then + uv venv +fi uv pip install -r requirements.txt \ No newline at end of file diff --git a/requirements.txt b/requirements.txt index 5423e0d..743f928 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ prompt-toolkit==3.0.52 cryptography==48.0.0 jproperties==2.1.2 -nuitka==4.1.2 \ No newline at end of file +nuitka==4.1.2 +click==8.4.1 \ No newline at end of file