mirror of https://github.com/secdev/scapy.git
Don't use /bin/bash
This commit is contained in:
parent
56d488b4e6
commit
0d5cc45176
|
@ -1,11 +1,11 @@
|
|||
#! /bin/bash
|
||||
#! /bin/sh
|
||||
DIR=$(dirname $0)/..
|
||||
if python --version 2>&1 | grep -q '^Python 2'; then
|
||||
PYTHON=python
|
||||
else
|
||||
PYTHON=python2
|
||||
fi
|
||||
if [ "$*" == "" ]
|
||||
if [ ! -n "$*" ]
|
||||
then
|
||||
PYTHONPATH=$DIR exec $PYTHON ${DIR}/scapy/tools/UTscapy.py -t regression.uts -f html -l -o /tmp/scapy_regression_test_$(date +%Y%m%d-%H%M%S).html
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue