tests/test-check-shbang.t
author Pierre-Yves David <pierre-yves.david@ens-lyon.org>
Thu, 16 Mar 2017 11:17:55 -0700
changeset 31466 b6bbfbaa205a
parent 29515 bd18c2178fac
child 32939 cad62cb3c84c
permissions -rw-r--r--
localrepo: fix deprecation warning version of wfile The patch lingered a bit too long in my local clone and I messed up when I updated the version number. Since nobody caught it, I'm fixing the version after the fact.

#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/bi{1}n/env python")'
  [1]

look for shell scripts that do not use /bin/sh

  $ hg files 'set:grep(r"^#!.*/bi{1}n/sh") and not grep(r"^#!/bi{1}n/sh")'
  [1]