We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1063b4d commit f9cbe6dCopy full SHA for f9cbe6d
.github/workflows/deploy.yml
@@ -291,6 +291,19 @@ jobs:
291
(
292
cd doc/manual/manual
293
rm -f images.aux images.idx images.log images.pdf images.pl images.tex internals.pl labels.pl WARNINGS
294
+ # Print generated files.
295
+ ls -A -C
296
+ # Check if there are no unexpected files.
297
+ for f in $(ls -A); do
298
+ case "$f" in
299
+ index.html|manual.html|manual.css|img*.svg)
300
+ ;;
301
+ *)
302
+ echo "Error: unexpected file: $f" >&2
303
+ exit 1
304
305
+ esac
306
+ done
307
)
308
cp -r doc/manual/manual $distname
309
tar -c $distname/* | gzip -c -9 > $distname.tar.gz
0 commit comments