Skip to content

Commit

Permalink
exit on failure
Browse files Browse the repository at this point in the history
  • Loading branch information
faljse committed Feb 15, 2017
1 parent 133531c commit 9b09afc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# WebYourCam
# WebYouCam

Streams input captured by ffmpeg (webcams) to a html5 browser using javascript and websockets

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>org.omilab.omirob.webcam.Main</mainClass>
<mainClass>info.faljse.webyoucam.Main</mainClass>
</manifest>
</archive>
</configuration>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/info/faljse/webyoucam/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public static void main(String[] args){
server.join();
} catch (Throwable t) {
t.printStackTrace(System.err);
System.exit(0);
}
}
}

0 comments on commit 9b09afc

Please sign in to comment.