This commit is contained in:
Robert Jelic
2025-02-09 18:50:50 +01:00
parent 3bd9637fc3
commit 534226e792

View File

@@ -31,10 +31,13 @@ jobs:
ldoc . --dir out --ext md --verbose
echo "Looking for generated files..."
find . -type f -name "*.md"
find . -maxdepth 1 -type f -name "*.md"
echo "Moving any files to out directory..."
find . -type f -name "*.md" -not -path "./out/*" -exec mv {} out/ \;
echo "Moving relevant files to out directory..."
find . -maxdepth 1 -type f -name "*.md" -exec mv {} out/ \;
# Cleanup - remove LDoc test files
rm -f out/one.md out/two.md out/opt.md
echo "Final output directory contents:"
ls -la out/