mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
11 lines
123 B
Perl
11 lines
123 B
Perl
|
|
#!/bin/sh
|
||
|
|
# $FreeBSD$
|
||
|
|
|
||
|
|
cd `dirname $0`
|
||
|
|
|
||
|
|
executable=`basename $0 .t`
|
||
|
|
|
||
|
|
make $executable 2>&1 > /dev/null
|
||
|
|
|
||
|
|
exec ./$executable
|