Skip to content

Commit

Permalink
Fix problem with project name setting
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandrebouchard committed Nov 19, 2017
1 parent 0294974 commit f8a4eb2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = "blangSDK"
rootProject.name = "blang" // Do not change to blangSDK: this value is hardcoded in the blang command-line infrastructure
4 changes: 4 additions & 0 deletions src/main/java/blang/runtime/internals/Main.xtend
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ class Main { // Warning: blang.runtime.internals.Main hard-coded in build.gradle
} catch (BinaryExecutionException bee) {
// don't print: mirroring showed it already
System.exit(1)
} catch (Exception e) {
System.err.println(e)
System.exit(1)
throw new RuntimeException
}
}

Expand Down

0 comments on commit f8a4eb2

Please sign in to comment.