diff --git a/tools/rexm/Makefile b/tools/rexm/Makefile index 455818b0f..7de2f8dce 100644 --- a/tools/rexm/Makefile +++ b/tools/rexm/Makefile @@ -345,7 +345,7 @@ $(PROJECT_NAME): $(OBJS) clean: ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM_OS),WINDOWS) - del *.o *.exe /s + rm *.o *.exe endif ifeq ($(PLATFORM_OS),LINUX) find . -type f -executable -delete diff --git a/tools/rexm/rexm.c b/tools/rexm/rexm.c index 47d2d591e..d5fd9bef0 100644 --- a/tools/rexm/rexm.c +++ b/tools/rexm/rexm.c @@ -1622,8 +1622,8 @@ int main(int argc, char *argv[]) // WARNING: Example download is asynchronous so reading fails on next step // when looking for a file that could not have been downloaded yet ChangeDirectory(TextFormat("%s", exBasePath)); - if (i == 0) system("start python -m http.server 8080"); // Init localhost just once - system(TextFormat("start explorer \"http:\\localhost:8080/%s/%s.html", exCategory, exName)); + if (i == 0) system("start python -m http.server 38080"); // Init localhost just once + system(TextFormat("start explorer \"http:\\localhost:38080/%s/%s.html", exCategory, exName)); } // NOTE: Example .log is automatically downloaded into system Downloads directory on browser-example exectution