mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 09:37:08 -04:00
13 lines
140 B
Perl
13 lines
140 B
Perl
|
|
#!/bin/sh
|
||
|
|
#
|
||
|
|
# $FreeBSD$
|
||
|
|
#
|
||
|
|
|
||
|
|
base=$(realpath $(dirname $0))
|
||
|
|
name=$(basename $0 .t)
|
||
|
|
|
||
|
|
set -e
|
||
|
|
cd $base
|
||
|
|
make -s $name >/dev/null
|
||
|
|
exec $base/$name
|