1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-08 12:01:56 +00:00
2000-05-09 04:08:18 +00:00

8 lines
105 B
Bash

#!/bin/sh
if [ "`id -u`" != "0" ]; then
echo "This package must be added as root.";
exit 1;
fi
exit 0