Skip to content

Commit

Permalink
Fix manager documentation perl script: Bug 3280
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Georgiev committed Sep 4, 2012
1 parent a2b5c58 commit d253268
Show file tree
Hide file tree
Showing 6 changed files with 5,158 additions and 197 deletions.
9 changes: 9 additions & 0 deletions plugins/net.bioclipse.doc/cleanStage1
@@ -0,0 +1,9 @@
#!/bin/perl
use strict;
use warnings;

open (FILE, '<', 'stage1') or die "$!";

while (<FILE>) {
print unless ($_ =~ /^$/) || ($_ =~ /---/);
}
2 changes: 1 addition & 1 deletion plugins/net.bioclipse.doc/find-published-classes
@@ -1,2 +1,2 @@
#!/bin/bash
grep -Rl @PublishedClass .. | grep \\.java | grep -v \\.svn
grep -Rl @PublishedClass ../../.. | grep \\.java | grep -v \\.svn

0 comments on commit d253268

Please sign in to comment.