mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
8 lines
105 B
Plaintext
8 lines
105 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ "`id -u`" != "0" ]; then
|
||
|
echo "This package must be added as root.";
|
||
|
exit 1;
|
||
|
fi
|
||
|
exit 0
|