view tests/test-check-shbang.t @ 29045:52f71214efce stable

builddeb: use codename in version Apparently, this is needed to allow ppas to be built for multiple distros.
author Sean Farley <sean@farley.io>
date Sat, 30 Apr 2016 11:51:45 -0700
parents 8c1759a2bdf4
children 3c9066ed557c
line wrap: on
line source

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