Skip to content

Commit

Permalink
Versão 1.5 para Sistemas UNIX
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro authored and Pedro committed Dec 24, 2021
1 parent f317cbf commit 9073075
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/unix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ int main(int argc, char const *argv[]) {
return 0;
} else { //Verificação dos Argumentos
if (strcmp(argv[1], "help") == 0){
printf("TapiocaBuilder 1.0\n\n");
printf("TapiocaBuilder 1.5\n\n");
printf("build - Build Project \n");
printf("clean - Clean Project\n");
printf("test - Execute Tests of Project\n");
Expand Down Expand Up @@ -65,7 +65,7 @@ int main(int argc, char const *argv[]) {
}
}
} else if(strcmp(argv[1],"test")== 0){
printf(ANSI_COLOR_YELLOW "Started Tests\n" ANSI_COLOR_RESET);
printf(ANSI_COLOR_YELLOW "Started Tests" ANSI_COLOR_RESET "\n");
clock_t start = clock();
int exitcode = system("./TestScript.sh");
if (exitcode == 0){
Expand Down

0 comments on commit 9073075

Please sign in to comment.