Skip to content

Commit

Permalink
Merge pull request #15 from craflin/env-script-bug
Browse files Browse the repository at this point in the history
Repaired environment scripts
  • Loading branch information
craflin authored Dec 19, 2021
2 parents 4e2f091 + ee38e68 commit ee81315
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

# 0.2.9

* Fixed environment script execution

# 0.2.8

* Fixed issue with invalid characters in output files
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.1)
cmake_policy(SET CMP0048 NEW)

project(umdoc VERSION 0.2.8)
project(umdoc VERSION 0.2.9)

set(CDEPLOY_NO_DEBUG_BUILD True)
set(CDEPLOY_NO_COMPILER True)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# umdoc

[![Build Status](http://iocp.hopto.org:8080/buildStatus/icon?job=craflin%2Fumdoc%2Fmaster)](http://iocp.hopto.org:8080/job/craflin/job/umdoc/job/master/)
[![Build Status](http://xaws6t1emwa2m5pr.myfritz.net:8080/buildStatus/icon?job=craflin%2Fumdoc%2Fmaster)](http://xaws6t1emwa2m5pr.myfritz.net:8080/job/craflin/job/umdoc/job/master/)

*umdoc* is a Markdown to *LaTeX* to *PDF* converter.
It is command line tool to convert a Markdown file or set of Markdown files into an input file (`.tex` file) for a *LaTeX* engine like `xelatex`, `lualatex` or `pdflatex`.
Expand Down
2 changes: 1 addition & 1 deletion Src/Parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ bool OutputData::EnvironmentSegment::process(OutputData::OutputFormat format_, S
for(List<String>::Iterator i = input.begin(), end = input.end(); i != end; ++i)
if(process.write((const char*)*i, i->length()) != i->length())
return error = Error::getErrorString(), false;
process.close();
process.close(Process::stdinStream);
if(readerThread.join() != 0)
return error = "Could not join reader thread", false;
}
Expand Down

0 comments on commit ee81315

Please sign in to comment.