File tree Expand file tree Collapse file tree
LabCodeRepoSetup/src/main/java/edu/wpi/rbe Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments