2024-03-17 18:12:41 +01:00
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
function doctor_run() {
|
2024-06-04 14:41:56 +02:00
|
|
|
local config=$1
|
|
|
|
local base=$(work_path_base $config)
|
|
|
|
local work_path=$DIR/$base
|
2024-03-17 18:12:41 +01:00
|
|
|
|
2024-06-04 14:41:56 +02:00
|
|
|
$work_path/forgejocli doctor check --all # --log-file -
|
2024-03-17 18:12:41 +01:00
|
|
|
}
|