Commits
36 36 | |
37 37 | public class Builder |
38 38 | { |
39 39 | |
40 40 | public static final boolean IS_WINDOWS = System.getProperty( "os.name" ).startsWith( "Windows" ); |
41 41 | public static final boolean IS_MAC = System.getProperty( "os.name" ).startsWith( "Mac" ); |
42 42 | public static final File CWD = new File( "." ); |
43 43 | public static final String MC_VERSION = "1.8"; |
44 44 | |
45 45 | private static String username = null; |
46 - | private static String password = null; |
47 46 | |
48 47 | public static void main(String[] args) throws Exception |
49 48 | { |
50 49 | if ( IS_MAC ) |
51 50 | { |
52 51 | System.out.println( "Sorry, but Macintosh is not currently a supported platform for compilation at this time." ); |
53 52 | System.out.println( "Please run this script on a Windows or Linux PC and then copy the jars to this computer." ); |
54 53 | return; |
55 54 | } |
56 55 | |