1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:18:12 +00:00

Base: Fix indentation in completion function for kill

This commit is contained in:
Adam Harald Jørgensen 2023-11-13 01:21:51 +01:00 committed by Ali Mohammad Pur
parent 66955b82a7
commit 67bc7cecbb

View file

@ -68,11 +68,11 @@ __complete_job_spec() {
} }
_complete_kill() { _complete_kill() {
if test $*[-1] = '--' { if test $*[-1] = '--' {
__complete_job_spec '' __complete_job_spec ''
} else { } else {
__complete_job_spec $*[-1] __complete_job_spec $*[-1]
} }
} }
_complete_cd() { _complete_cd() {