Skip to content

Commit

Permalink
Merge pull request #1308 from SomelifeDev/master
Browse files Browse the repository at this point in the history
Adds exit codes to play deps command
  • Loading branch information
xael-fry authored Jul 9, 2019
2 parents 1c44d31 + 496e833 commit 61498dc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions framework/src/play/deps/DependenciesManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,12 @@ public static void main(String[] args) throws Exception {
System.out.println("~");
System.out.println("~ Some dependencies are still missing.");
System.out.println("~");
System.exit(1);
} else {
System.out.println("~");
System.out.println("~ Done!");
System.out.println("~");
System.exit(0);
}
}

Expand Down

0 comments on commit 61498dc

Please sign in to comment.