diff options
author | jbu <pullmoll@t-online.de> | 2015-06-30 13:12:16 +0200 |
---|---|---|
committer | jbu <pullmoll@t-online.de> | 2015-06-30 13:12:16 +0200 |
commit | 25b332de77d2d15c323111961d8363260dec070d (patch) | |
tree | 7559e8dfb704bde608e4524ce69b9995f6cd0047 | |
parent | d9c6bcf15cbb83488d355640e5e2b501d6044330 (diff) | |
download | xtools-25b332de77d2d15c323111961d8363260dec070d.tar.gz xtools-25b332de77d2d15c323111961d8363260dec070d.tar.xz xtools-25b332de77d2d15c323111961d8363260dec070d.zip |
xlint: don't complain for escaped backticks
-rwxr-xr-x | xlint | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlint b/xlint index 339a558..fb691ff 100755 --- a/xlint +++ b/xlint @@ -140,7 +140,7 @@ for template; do scan 'vinstall.* usr/share/licenses' "use vlicense" scan '^ ' "indent with tabs" | once scan '[\t ]$' "trailing whitespace" - scan '`' "use \$() instead of backticks" + scan '[^\\]`' "use \$() instead of backticks" scan 'revision=0' "revision must not be zero" scan 'replaces=(?=.*\w)[^<>]*$' "replaces needs depname with version" scan 'conflicts=(?=.*\w)[^<>]*$' "conflicts needs depname with version" |