9 lines
211 B
Bash
9 lines
211 B
Bash
# SPDX-License-Identifier: MIT
|
|
|
|
function doctor_run() {
|
|
local config=$1
|
|
local base=$(work_path_base $config)
|
|
local work_path=$DIR/$base
|
|
|
|
$work_path/forgejocli doctor check --all # --log-file -
|
|
}
|