Compare commits

..

No commits in common. "3d0fffd49ada27f526747d453af0cf77825d3314" and "4e37e8ca473ec2131d2c91aa8e6c8dd51b1fd6cd" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ commander.register('bg', function(_, sinks)
return 1
end
local err = job:background()
local err = job.background()
if err then
sinks.out:writeln('bg: ' .. err)
return 2

View File

@ -7,7 +7,7 @@ commander.register('fg', function(_, sinks)
return 1
end
local err = job:foreground() -- waits for job; blocks
local err = job.foreground() -- waits for job; blocks
if err then
sinks.out:writeln('fg: ' .. err)
return 2