Really Weird Ruby Bug?
Not sure if this is a bug or not, I can’t find an existing bug report. I have no idea why this would be this way.
This script:
print "hello"
sleep 5
exit true
run with sudo, breaks. The sleep call never happens.
This script:
print "hello"
sleep 5
Kernel.exit(true)
run with sudo, works like a champ.
Weird, no?
-
brianray
