diff options
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix index 5d36f84..63a1d90 100644 --- a/flake.nix +++ b/flake.nix @@ -97,8 +97,8 @@ mkdir -p "$target" # Copy the lldb Python package (and the native extension) - if [ -h "$src/lldb" ]; then - ln -sT "$src/lldb" "$target/lldb" + if [ -d "$src/lldb" ]; then + ln -sTf "$src/lldb" "$target/lldb" fi # Optional: some builds ship a top-level helper |