7 lines
139 B
Bash
7 lines
139 B
Bash
# SPDX-License-Identifier: MIT
|
|
|
|
function doctor_run() {
|
|
local version=$1
|
|
|
|
forgejo_cli $version doctor check --all # --log-file -
|
|
}
|