Compare commits

...

2 Commits

Author SHA1 Message Date
Ruben Dahl 54f50d94e7
Updated ceevlang 2023-01-14 12:37:17 +01:00
Ruben Dahl c6a1b0521a
Output error on not implemented subcommand. 2023-01-13 21:45:05 +01:00
2 changed files with 4 additions and 2 deletions

@ -1 +1 @@
Subproject commit 870c6089f48df9fa1e00295d19e667cff96ad62c Subproject commit 2e4e5bff3d5170ec0fc14e265c66660edc9eca83

View File

@ -213,8 +213,10 @@ int devel(std::deque<std::string> args) {
return devel_roadmap(); return devel_roadmap();
if (a1 == "sdl2") if (a1 == "sdl2")
return devel_sdl2(args); return devel_sdl2(args);
if (a1 == "lang") if (a1 == "lang") {
std::cerr << "Not implemented" << std::endl;
return 1; return 1;
}
std::string kw; std::string kw;
if (a1.substr(0, 2) == "--") { if (a1.substr(0, 2) == "--") {