Skip to content

Commit

Permalink
change link mode
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jan 30, 2026
1 parent fe40e7e commit 18cfdf6
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION="1.0.1"
VERSION="1.0.2"
THIS=$(basename $0 .sh)

# Define the target directory
Expand Down Expand Up @@ -55,11 +55,15 @@ EOF

# 4. Create the venv and install dependencies
# Use --python to specify 3.12, 3.13, etc.
uv venv --python "$PYTHON_VERSION"
uv venv --python "$PYTHON_VERSION" \
--copy-python \
--link-mode copy \
--seed

source .venv/bin/activate

# 5. Sync the environment
uv sync
uv sync --link-mode copy

# 6. Create a convenient entry point symlink
mkdir -p bin
Expand Down

0 comments on commit 18cfdf6

Please sign in to comment.