Skip to content

Commit 42af343

Browse files
committed
update doxygen when pushing
1 parent e16bf1c commit 42af343

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

LabCodeRepoSetup/src/main/java/edu/wpi/rbe/LabCodeRepoSetupMain.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,21 @@ public static void main(String[] args) throws Exception {
319319
run(commands, cloneDir);
320320

321321

322+
commands = new ArrayList<String>();
323+
commands.add("git"); // command
324+
commands.add("commit"); // command
325+
commands.add("-a"); // command
326+
commands.add("-m'Changing ino name'"); // command
327+
run(commands, cloneDir);
328+
}
329+
File doxyfile = new File(cloneDir.getAbsolutePath()+"/doxy.dox");
330+
if(doxyfile.exists()) {
331+
commands = new ArrayList<String>();
332+
commands.add("doxygen"); // command
333+
commands.add("doxy.dox"); // command
334+
run(commands, cloneDir);
335+
336+
322337
commands = new ArrayList<String>();
323338
commands.add("git"); // command
324339
commands.add("commit"); // command

0 commit comments

Comments
 (0)