Skip to content

Commit

Permalink
fix: add debugging for copying file
Browse files Browse the repository at this point in the history
  • Loading branch information
botanical committed Dec 18, 2024
1 parent 91dc819 commit 788ca5f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,8 @@ jobs:
git ls-files --others --exclude-standard | while read file; do
echo "Copying $file to datasets directory"
mkdir -p "datasets"
cp "$file" "/datasets/"
ls
cp "$file" "datasets/"
done
git status
Expand Down

0 comments on commit 788ca5f

Please sign in to comment.