Skip to content

Commit 5b78eb9

Browse files
committed
print when you get a file passed in at cmd
1 parent 68b7bbb commit 5b78eb9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/main/java/com/commonwealthrobotics/Main.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,12 @@ public static void main(String[] args) {
213213
if (args != null) {
214214
if (args.length != 0) {
215215
File f = new File(args[0]);
216+
System.out.println("Passed In File at "+f.getAbsolutePath());
216217
if (f.exists()) {
217218
ConfigurationDatabase.put("CaDoodle", "CaDoodleacriveFile", f.getAbsolutePath());
218-
}
219+
System.out.println("Passed In File Exists! ");
220+
}else
221+
System.out.println("Fail! Passed In File Does Not Exists! ");
219222
}
220223
}
221224
Plane.setEPSILON(1.0e-9);

0 commit comments

Comments
 (0)