Skip to content
This repository has been archived by the owner on Jan 26, 2019. It is now read-only.

Commit

Permalink
Makepatch cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sameer committed Feb 5, 2016
1 parent 632a6e7 commit dfe4ede
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified makepatch.class
Binary file not shown.
4 changes: 2 additions & 2 deletions makepatch.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ public static void main(String[] args) throws Exception
String post = "";
Scanner in = new Scanner(new File(args[0]));
in.nextLine();in.nextLine();
post += in.nextLine().replace("eclipse/Clean/src/main/java","../src-base/minecraft")+"\n";
post += in.nextLine().replace("eclipse/cauldron/src/main/java","../src-work/minecraft").replace("eclipse/Cauldron/src/main/java","../src-work/minecraft")+"\n";
post += in.nextLine().replace("\\","/").replace("\\","/").replace("\"","").replace("//","/").replace("eclipse/Clean/src/main/java","../src-base/minecraft").replace("eclipse\\\\Clean\\\\src\\\\main\\\\java\\\\","../src-base/minecraft/")+"\n";
post += in.nextLine().replace("\\\\","/").replace("\\","/").replace("\"","").replace("//","/").replace("eclipse/cauldron/src/main/java","../src-work/minecraft").replace("eclipse/Cauldron/src/main/java","../src-work/minecraft").replace("eclipse\\\\Cauldron\\\\src\\\\main\\\\java\\\\","../src-work/minecraft")+"\n";
while(in.hasNextLine())
{

Expand Down

0 comments on commit dfe4ede

Please sign in to comment.