Skip to content

Commit

Permalink
[DEBUG]
Browse files Browse the repository at this point in the history
  • Loading branch information
abelsiqueira committed Jul 4, 2024
1 parent c8ff42a commit 8b3ce34
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/scripts/verify-docs-build-files.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
#!/bin/bash

find tmp/Guldasta.jl
echo "First find"
find tmp/Guldasta.jl/docs

echo "Second find"
find tmp/Guldasta.jl/docs -type f -name '*.md' -print0

echo "Third find"
find tmp/Guldasta.jl/docs -type f -name '*.md' -print

echo "Fourth find"
find tmp/Guldasta.jl/docs -type f -name '*.md'

while IFS= read -r -d '' f; do
f=${f/src/build}
# Converts path/file.md to path/file/index.html (index.md just changes to index.html)
Expand Down

0 comments on commit 8b3ce34

Please sign in to comment.