Skip to content

Commit

Permalink
Merge branch 'develop' into new-debugger-flag-in-krun
Browse files Browse the repository at this point in the history
  • Loading branch information
Robertorosmaninho authored Oct 4, 2023
2 parents 079c231 + 71a0669 commit d17623d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion k-distribution/src/main/assembly/bin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
</fileSet>
<fileSet>
<directory>${project.parent.basedir}/package</directory>
<outputDirectory>/lib</outputDirectory>
<outputDirectory>/lib/kframework</outputDirectory>
<includes>
<include>version</include>
</includes>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public void printVersionMessage() {
// the release version if we're not (e.g. from a release tarball).
String version = mf.getMainAttributes().getValue("Implementation-Git-Describe");
if (version.isEmpty()) {
version = "v" + FileUtils.readFileToString(new File(kBase + "/lib/version")).trim();
version = "v" + FileUtils.readFileToString(new File(kBase + "/lib/kframework/version")).trim();
}

System.out.println("K version: " + version);
Expand Down

0 comments on commit d17623d

Please sign in to comment.