aboutsummaryrefslogtreecommitdiff
path: root/lint/urxvt.sh
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-10-31 23:07:20 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-10-31 23:07:20 +1300
commit9d044a7dae36d42d620a1a6bc63a43aab9a6b8b7 (patch)
tree92b1f50e6a584611ae63778734a38f132982004b /lint/urxvt.sh
parentMerge branch 'release/v0.1.0' (diff)
parentBump version number to 0.2.0 (diff)
downloaddotfiles-0.2.0.tar.gz (sig)
dotfiles-0.2.0.zip
Merge branch 'release/v0.2.0'v0.2.0
Diffstat (limited to 'lint/urxvt.sh')
-rw-r--r--lint/urxvt.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/lint/urxvt.sh b/lint/urxvt.sh
index 507034be..477157f7 100644
--- a/lint/urxvt.sh
+++ b/lint/urxvt.sh
@@ -1 +1,6 @@
-find urxvt/ext -type f ! -name '*.pl' -print -exec perlcritic --brutal -- {} \;
+set --
+for pl in urxvt/ext/*.pl ; do
+ set -- "$@" "${pl%.pl}"
+done
+perlcritic --brutal -- "${pl%.pl}"
+printf 'URxvt Perl extensions linted successfully.\n'