ignore the robot magic filesystem with install, and small /bin/sleep fix

/bin/sleep ^c was printing an error because it was returning the event data, which prompts was interpretting as error details [unexpected]
use a .prop file to have the robot component magic fs be ignored when running `install`
This commit is contained in:
payonel 2017-09-08 00:49:50 -07:00
parent 81ffb2187b
commit eaf2b0cf8a
2 changed files with 3 additions and 2 deletions

View File

@ -53,7 +53,7 @@ end
local stdin_stream = io.stdin.stream local stdin_stream = io.stdin.stream
if stdin_stream.pull then if stdin_stream.pull then
return stdin_stream:pull(nil, total_time, "interrupted") stdin_stream:pull(nil, total_time, "interrupted")
else else
os.sleep(total_time) require("event").pull(total_time, "interrupted")
end end

View File

@ -0,0 +1 @@
{ignore=true}