Skip to content

Hot Fix

Compare
Choose a tag to compare
@Jadens-arc Jadens-arc released this 02 Dec 02:41
· 59 commits to master since this release

Fixed bug that prevented Java code from being compiled.

The Cause

This bug was caused by the Java compiler not cooperating with the Projects directory.

The solution

Instead of compiling with the path as an argument

$ java Projects/test.java

we had to change directories into the path and then compile

$ cd Projects && java test.java