]> git.donarmstrong.com Git - debhelper.git/blob - dh_testroot
r297: removed obsolete comment.
[debhelper.git] / dh_testroot
1 #!/usr/bin/perl -w
2 #
3 # Checks to make sure you are root.
4
5 BEGIN { push @INC, "debian", "/usr/share/debhelper" }
6 use Dh_Lib;
7 init();
8
9 if ($< != 0) {
10         error("You must run this as root.");
11 }