Skip to content

Commit

Permalink
windows binary debug
Browse files Browse the repository at this point in the history
  • Loading branch information
wenlinlee committed Jun 24, 2024
1 parent c8105c7 commit ecda8f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/ci_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
set -e

bash gradlew verifyGoogleJavaFormat
bash gradlew build
bash gradlew build --info
2 changes: 1 addition & 1 deletion src/main/java/org/fisco/solc/compiler/Solc.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public Solc(boolean sm, Version version) {
if (solc == null || !solc.exists()) {
initDefaultBundled(sm, version);
}
} catch (IOException e) {
} catch (Exception e) {
logger.error(" Can't init solc compiler, e: ", e);
e.printStackTrace();
throw new RuntimeException("Can't init solc compiler: ", e);
Expand Down

0 comments on commit ecda8f4

Please sign in to comment.