buildcmd was using echo, changed to print
This commit is contained in:
parent
3b595bd314
commit
de564b9cba
|
@ -2,7 +2,7 @@ local job_id, job_buffer
|
||||||
|
|
||||||
local function job_exit(jobId, exit_code, _)
|
local function job_exit(jobId, exit_code, _)
|
||||||
job_id = nil
|
job_id = nil
|
||||||
echo("Job done")
|
print("job done!")
|
||||||
end
|
end
|
||||||
|
|
||||||
local function has_buffer()
|
local function has_buffer()
|
||||||
|
@ -11,7 +11,7 @@ end
|
||||||
|
|
||||||
function save_all_and_build()
|
function save_all_and_build()
|
||||||
if job_id then
|
if job_id then
|
||||||
echo ("Job processing")
|
print("Job processing")
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue