1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:57:45 +00:00

Shell: Move printing job status into a Job::print_status() helper

This is only used by the "jobs" builtin right now, but more soon.
This commit is contained in:
Andreas Kling 2020-08-06 15:09:25 +02:00
parent d9aecc8e08
commit 22dd5a7021
4 changed files with 86 additions and 44 deletions

View file

@ -1,9 +1,10 @@
set(SOURCES
AST.cpp
Builtin.cpp
main.cpp
Job.cpp
Parser.cpp
Shell.cpp
main.cpp
)
serenity_bin(Shell)