buildcmd was using echo, changed to print

This commit is contained in:
Tyler White 2022-12-14 19:23:30 -08:00
parent 3b595bd314
commit de564b9cba
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ local job_id, job_buffer
local function job_exit(jobId, exit_code, _)
job_id = nil
echo("Job done")
print("job done!")
end
local function has_buffer()
@ -11,7 +11,7 @@ end
function save_all_and_build()
if job_id then
echo ("Job processing")
print("Job processing")
return
end