mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
dbd24b7a91
Begged for by: jkh
8 lines
105 B
Bash
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
|