]> git.donarmstrong.com Git - debhelper.git/blobdiff - dh_testroot
r421: use strict
[debhelper.git] / dh_testroot
index b76a1e595678268e6914c0bc389be4b0d6e6d83c..9192f853853dad73fb5587cf8e7a3a89ca75fd88 100755 (executable)
@@ -2,8 +2,9 @@
 #
 # Checks to make sure you are root.
 
+use strict;
 use Debian::Debhelper::Dh_Lib;
 
 if ($< != 0) {
-       error("You must run this as root.");
+       error("You must run this as root (or use fakeroot).");
 }