Skip to content

Commit

Permalink
Handle null glob in tutopt
Browse files Browse the repository at this point in the history
  • Loading branch information
skaller committed May 28, 2022
1 parent e53c179 commit d2bfbb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ perf-dir:
tutopt-dir:
mkdir -p ${BUILDROOT}/tutopt
${BUILDBIN}/flx_tangle --indir=${BUILDROOT}/share/src/web/tutopt --outdir=${BUILDROOT}/test/tutopt
-for file in src/web/tutopt/*.fdoc; do ${BUILDBIN}/flx_iscr $$file ${BUILDROOT}/test/tutopt; done
for file in src/web/tutopt/*.fdoc; do [ -e "$file" ] || break; ${BUILDBIN}/flx_iscr $$file ${BUILDROOT}/test/tutopt; done

tut-dir:
mkdir -p ${BUILDROOT}/tut
Expand Down

0 comments on commit d2bfbb8

Please sign in to comment.