Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Run perltidy over the code base. I had to revert a small amount of it's
changes.

Add "make perltidy"
  • Loading branch information
schwern committed Oct 1, 2008
1 parent 6d40d06 commit 433cdeb
Show file tree
Hide file tree
Showing 13 changed files with 589 additions and 665 deletions.
15 changes: 15 additions & 0 deletions Makefile.PL
Expand Up @@ -81,3 +81,18 @@ WriteMakefile(
}, },
})) }))
); );


{
package MY;

sub postamble {
return <<'MAKE';
perltidy:
find . -name '*.pm' | xargs perltidy -b
find . -name '*.pm.bak' | xargs rm
MAKE
}
}

0 comments on commit 433cdeb

Please sign in to comment.