Make the check_executable warning easier to understand.

unstable
sinn3r 2012-10-12 09:33:18 -05:00
parent dc71771dda
commit 2bbbbee381
1 changed files with 3 additions and 1 deletions

View File

@ -59,7 +59,9 @@ class Msftidy
##
def check_executable
warn("File is not executable") if not File.executable?(@name)
if not File.executable?(@name)
warn("File is not executable. Double check your file type and permissions.")
end
end
def test_old_rubies(f_rel)