Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jay2013 committed May 8, 2022
1 parent f869e42 commit 2a803ce
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
Binary file modified artifacts/soot-infoflow-cmd-jar-with-dependencies.jar
Binary file not shown.
4 changes: 4 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/bash

mvn -DskipTests install
mv soot-infoflow-cmd/target/soot-infoflow-cmd-jar-with-dependencies.jar artifacts/
2 changes: 2 additions & 0 deletions soot-infoflow-cmd/src/soot/jimple/infoflow/cmd/MainClass.java
Original file line number Diff line number Diff line change
Expand Up @@ -618,6 +618,8 @@ else if (pathAlgo.equalsIgnoreCase("SOURCESONLY"))
return PathBuildingAlgorithm.ContextInsensitiveSourceFinder;
else if (pathAlgo.equalsIgnoreCase("RECURSIVE"))
return PathBuildingAlgorithm.Recursive;
else if (pathAlgo.equalsIgnoreCase("NONE"))
return PathBuildingAlgorithm.None;
else {
System.err.println(String.format("Invalid path reconstruction algorithm: %s", pathAlgo));
throw new AbortAnalysisException();
Expand Down

0 comments on commit 2a803ce

Please sign in to comment.