This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.BufferedReader; | |
| import java.io.DataOutputStream; | |
| import java.io.InputStreamReader; | |
| import java.net.Socket; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function checkpush(){ | |
| echo "Did you run the test suite?" | |
| select yn in "Yes" "No"; do | |
| case $yn in | |
| Yes ) git push; break;; | |
| No ) echo "Better run the tests first." exit;; | |
| esac | |
| done | |
| } |