Skip to content

Commit

Permalink
Merge pull request #926 from xexyl/prep
Browse files Browse the repository at this point in the history
Fix display problem in make prep/slow_prep
  • Loading branch information
lcn2 authored Aug 3, 2024
2 parents f61aed6 + 75d5186 commit aefc0ab
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -577,12 +577,11 @@ prep: test_ioccc/prep.sh
echo; \
echo "make $@: see ${BUILD_LOG} for details"; \
if [[ $$EXIT_CODE -ne 0 ]]; then \
${S} echo "${OUR_NAME}: make $@ ending at: `date`"; \
exit "$$EXIT_CODE"; \
else \
${S} echo "${OUR_NAME}: make $@ ending at: `date`"; \
echo "All Done!!! All Done!!! -- Jessica Noll, Age 2"; \
fi
${S} echo "${OUR_NAME}: make $@ ending at: `date`"; \

# a slower version of prep that does not write to a log file so one can see the
# full details.
Expand All @@ -599,12 +598,11 @@ slow_prep: test_ioccc/prep.sh
echo; \
echo "make $@: see ${BUILD_LOG} for details"; \
if [[ $$EXIT_CODE -ne 0 ]]; then \
${S} echo "${OUR_NAME}: make $@ ending at: `date`"; \
exit "$$EXIT_CODE"; \
else \
${S} echo "${OUR_NAME}: make $@ ending at: `date`"; \
echo "All Done!!! All Done!!! -- Jessica Noll, Age 2"; \
fi
${S} echo "${OUR_NAME}: make $@ ending at: `date`"; \


# make build release pull
Expand Down

0 comments on commit aefc0ab

Please sign in to comment.