Skip to content

Commit

Permalink
fix symbolic files are not handled as python_lib_path (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmokmss authored Aug 29, 2024
1 parent e5b7e58 commit f2913a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/core/runner/python/env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ elif [ -d "$src" ]; then
mkdir -p "$dest/$src"

# Find all files in the source directory
find "$src" -type f | while read -r file; do
find "$src" -type f,l | while read -r file; do
# Get the relative path of the file
rel_path="${file#$src/}"
# Get the directory of the relative path
Expand Down

0 comments on commit f2913a2

Please sign in to comment.