Skip to content
This repository has been archived by the owner on Feb 1, 2020. It is now read-only.

Commit

Permalink
update to v3.5.2 for fix to maude filename escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
Dwight Guth committed Apr 28, 2015
1 parent c41270a commit 25918c3
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion java-backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.kframework.k</groupId>
<artifactId>parent</artifactId>
<version>3.5.1</version>
<version>3.5.2</version>
</parent>
<artifactId>java-backend</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion k-distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.kframework.k</groupId>
<artifactId>parent</artifactId>
<version>3.5.1</version>
<version>3.5.2</version>
</parent>
<artifactId>k-distribution</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion kernel/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.kframework.k</groupId>
<artifactId>parent</artifactId>
<version>3.5.1</version>
<version>3.5.2</version>
</parent>
<artifactId>kernel</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion kore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.kframework.k</groupId>
<artifactId>parent</artifactId>
<version>3.5.1</version>
<version>3.5.2</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>kore</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion maude-backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.kframework.k</groupId>
<artifactId>parent</artifactId>
<version>3.5.1</version>
<version>3.5.2</version>
</parent>
<artifactId>maude-backend</artifactId>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import org.kframework.kompile.KompileOptions;
import org.kframework.krun.KRunOptions;
import org.kframework.krun.ioserver.main.IOServer;
import org.kframework.utils.StringUtil;
import org.kframework.utils.file.JarInfo;
import org.kframework.utils.maude.MaudeRun;

Expand Down Expand Up @@ -68,8 +69,8 @@ public int run() {
String commandTemplate = "load {0}\nmod KRUNNER is including {1} .\neq #TCPPORT = {2,number,#} .\nendm\nload {3}\n";

String command = MessageFormat.format(commandTemplate,
JarInfo.windowfyPath(files.resolveKompiled("main.maude").getAbsolutePath()),
kompileOptions.mainModule(), server.getPort(), JarInfo.windowfyPath(files.resolveTemp("maude_in").getAbsolutePath()));
StringUtil.enquoteCString(JarInfo.windowfyPath(files.resolveKompiled("main.maude").getAbsolutePath())),
kompileOptions.mainModule(), server.getPort(), StringUtil.enquoteCString(JarInfo.windowfyPath(files.resolveTemp("maude_in").getAbsolutePath())));
Process _maudeProcess = runMaude();
BufferedWriter maudeInput = new BufferedWriter(new OutputStreamWriter(_maudeProcess.getOutputStream()));
maudeInput.write(command + "\n");
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.kframework.k</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>3.5.1</version>
<version>3.5.2</version>
<name>K Framework Tool Parent</name>

<modules>
Expand All @@ -19,7 +19,7 @@

<scm>
<connection>scm:git:https://github.com/kframework/k.git</connection>
<tag>v3.5.1</tag>
<tag>v3.5.2</tag>
</scm>

<repositories>
Expand Down
2 changes: 1 addition & 1 deletion sdf-parser/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.kframework.k</groupId>
<artifactId>parent</artifactId>
<version>3.5.1</version>
<version>3.5.2</version>
</parent>
<artifactId>sdf-parser</artifactId>
<packaging>jar</packaging>
Expand Down

0 comments on commit 25918c3

Please sign in to comment.