tests/test-check-shbang.t
author Matt Harbison <matt_harbison@yahoo.com>
Tue, 15 Mar 2016 23:04:35 -0400
changeset 28888 d46dc68ec042
parent 28879 8c1759a2bdf4
child 29219 3c9066ed557c
permissions -rw-r--r--
test-blackbox: add missing glob for Windows The test warns instead of completes without this.

#require test-repo

  $ 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]