# shellcheck shell=dash

___x_cmd_solo___clean(){
    case "$1" in
        "")             N=solo M="Please provide <srcfile> after 'clean'"   log:ret:64 ;;
        -h|--help)      ___x_cmd help -m solo clean "$@";            return ;;
    esac

    local srcfile="$1";     shift

    solo:prepare:path "$srcfile"    || return $?

    solo:info "x rmrf $wsdp"
    ___x_cmd rmrf "${wsdp}"
}

