12 lines
252 B
Bash
12 lines
252 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# $FreeBSD$
|
||
|
#
|
||
|
|
||
|
echo
|
||
|
echo "FreeBSD has migrated away from GNATS for tracking bugs, and so send-pr"
|
||
|
echo "is no longer used for submitting bug reports."
|
||
|
echo "Please see https://www.freebsd.org/support.html for more information."
|
||
|
echo
|
||
|
exit 1
|