Skip to content

Commit

Permalink
fix: update copying commands
Browse files Browse the repository at this point in the history
  • Loading branch information
botanical committed Dec 18, 2024
1 parent dbf55f4 commit 4d18d7c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,8 +257,9 @@ jobs:
ls ./ingestion-data/dataset-mdx/
git status
git ls-files --others --exclude-standard | while read file; do
echo "Copying $file to veda-config/datasets"
cp --parents "$file" /datasets/
echo "Copying $file to datasets directory"
mkdir -p "datasets/$(dirname "$file")"
cp "$file" "/datasets/$file"
done
git status
Expand Down

0 comments on commit 4d18d7c

Please sign in to comment.