use ../config/accessor.nu *
export def cleanup [
wk_path: string
]: nothing -> nothing {
if not (is-debug-enabled) and ($wk_path | path exists) {
rm --force --recursive $wk_path
} else {
#use utils/interface.nu _ansi
_print $"(_ansi default_dimmed)______________________(_ansi reset)"
_print $"(_ansi default_dimmed)Work files not removed"
_print $"(_ansi default_dimmed)wk_path:(_ansi reset) ($wk_path)"
}