Skip to content

Commit 8dd7301

Browse files
committed
adding the new doxygen files
1 parent 42af343 commit 8dd7301

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

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

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,12 +333,17 @@ public static void main(String[] args) throws Exception {
333333
commands.add("doxy.dox"); // command
334334
run(commands, cloneDir);
335335

336+
commands = new ArrayList<String>();
337+
commands.add("git"); // command
338+
commands.add("add"); // command
339+
commands.add("doc/html/*"); // command
340+
run(commands, cloneDir);
336341

337342
commands = new ArrayList<String>();
338343
commands.add("git"); // command
339344
commands.add("commit"); // command
340345
commands.add("-a"); // command
341-
commands.add("-m'Changing ino name'"); // command
346+
commands.add("-mDoxygen"); // command
342347
run(commands, cloneDir);
343348
}
344349

@@ -416,12 +421,13 @@ public static void run(List<String> commands, File dir) throws Exception {
416421

417422
String s = null;
418423
String e = null;
424+
Thread.sleep(100);
419425
while ((s = stdInput.readLine()) != null || (e = errInput.readLine()) != null) {
420426
if (s != null)
421427
System.out.println(s);
422428
if (e != null)
423429
System.err.println(e);
424-
Thread.sleep(100);
430+
//
425431
}
426432
while (process.isAlive())
427433
;

0 commit comments

Comments
 (0)