We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dd7301 commit 413d52aCopy full SHA for 413d52a
1 file changed
LabCodeRepoSetup/src/main/java/edu/wpi/rbe/LabCodeRepoSetupMain.java
@@ -326,11 +326,11 @@ public static void main(String[] args) throws Exception {
326
commands.add("-m'Changing ino name'"); // command
327
run(commands, cloneDir);
328
}
329
- File doxyfile = new File(cloneDir.getAbsolutePath()+"/doxy.dox");
+ File doxyfile = new File(cloneDir.getAbsolutePath()+"/doxy.doxyfile");
330
if(doxyfile.exists()) {
331
commands = new ArrayList<String>();
332
commands.add("doxygen"); // command
333
- commands.add("doxy.dox"); // command
+ commands.add("doxy.doxyfile"); // command
334
335
336
0 commit comments