Mercurial > hg
view tests/test-check-shbang.t @ 29336:9368ed12f3c0
scmutil: delete extra newline at EOF
Spotted by my emacs config that cleans up extra whitespace.
author | Augie Fackler <raf@durin42.com> |
---|---|
date | Fri, 10 Jun 2016 00:14:10 -0400 |
parents | 3c9066ed557c |
children | bd18c2178fac |
line wrap: on
line source
#require test-repo $ . "$TESTDIR/helpers-testrepo.sh" $ cd "`dirname "$TESTDIR"`" look for python scripts that do not use /usr/bin/env $ hg files 'set:grep(r"^#!.*?python") and not grep(r"^#!/usr/bin/env python")' [1] look for shell scripts that do not use /bin/sh $ hg files 'set:grep(r"^#!.*/bin/sh") and not grep(r"^#!/bin/sh")' [1]