Commit 360fe5b6 authored by Ramon Nou's avatar Ramon Nou
Browse files

added none

parent 28f445a4
Loading
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -62,8 +62,11 @@ dataset_process(std::string id) {
    } else if(id.find("dataclay:") != std::string::npos) {
        id = id.substr(strlen("dataclay:"));
        type = cargo::dataset::type::dataclay;
    } else
    } else if(id.find("posix:") != std::string::npos) {
        id = id.substr(strlen("posix:"));
        type = cargo::dataset::type::posix;
    }
    else type = cargo::dataset::type::none;

    return cargo::dataset{id, type};
}