@@ -39,7 +39,8 @@ public static void main(String[] args) {
3939 FileUtils .deleteDirectory (values .outputDirectory ());
4040 FileUtils .copyDirectory (values .vanillaPack (), values .outputDirectory ());
4141 } catch (IOException e ) {
42- System .out .println ("Failed to copy vanilla pack to output directory" );
42+ System .err .println ("Failed to copy vanilla pack to output directory" );
43+ System .err .println ("From: " + values .vanillaPack () + " To: " + values .outputDirectory ());
4344 e .printStackTrace ();
4445 return ;
4546 }
@@ -50,7 +51,8 @@ public static void main(String[] args) {
5051 try {
5152 LangModifier .modifyLangFile (values .outputDirectory ());
5253 } catch (IOException e ) {
53- System .out .println ("Failed to modify lang file" );
54+ System .err .println ("Failed to modify lang file" );
55+ System .err .println ("Directory: " + values .outputDirectory ());
5456 e .printStackTrace ();
5557 return ;
5658 }
@@ -60,7 +62,8 @@ public static void main(String[] args) {
6062 try {
6163 FileUtils .copyDirectory (values .textureCategory (), values .outputDirectory () + "/assets/skyblock/textures/" );
6264 } catch (IOException e ) {
63- System .out .println ("Failed to move textures into custom" );
65+ System .err .println ("Failed to move textures into custom" );
66+ System .err .println ("From: " + values .textureCategory () + " To: " + values .outputDirectory () + "/assets/skyblock/textures/" );
6467 e .printStackTrace ();
6568 return ;
6669 }
@@ -77,7 +80,8 @@ public static void main(String[] args) {
7780
7881 Files .write (new File (values .outputDirectory () + "/assets/minecraft/font/default.json" ).toPath (), defaultJson .getBytes ());
7982 } catch (IOException e ) {
80- System .out .println ("Failed to override default.json with our textures" );
83+ System .err .println ("Failed to override default.json with our textures" );
84+ System .err .println ("Directory: " + values .outputDirectory ());
8185 e .printStackTrace ();
8286 return ;
8387 }
0 commit comments