t5304: add a test for pruning with bitmaps
[gitweb.git] / t / check-non-portable-shell.pl
index b45bdac688c40104dd42ef68a07690420d96c142..166d64d4a2f05e76f3966080f188b864bf6bf4bb 100755 (executable)
@@ -35,7 +35,8 @@ sub err {
                chomp;
        }
 
-       /\bsed\s+-i/ and err 'sed -i is not portable';
+       /\bcp\s+-a/ and err 'cp -a is not portable';
+       /\bsed\s+-[^efn]\s+/ and err 'sed option not portable (use only -n, -e, -f)';
        /\becho\s+-[neE]/ and err 'echo with option is not portable (use printf)';
        /^\s*declare\s+/ and err 'arrays/declare not portable';
        /^\s*[^#]\s*which\s/ and err 'which is not portable (use type)';