Skip to content

Commit

Permalink
Adicionado o comando test no help
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro authored and Pedro committed Dec 24, 2021
1 parent 06cf1fc commit f317cbf
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/unix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ int main(int argc, char const *argv[]) {
} else { //Verificação dos Argumentos
if (strcmp(argv[1], "help") == 0){
printf("TapiocaBuilder 1.0\n\n");
printf("Build - Build Project \n");
printf("Clean - Clean Project\n");
printf("build - Build Project \n");
printf("clean - Clean Project\n");
printf("test - Execute Tests of Project\n");
printf("\n");
} else if(strcmp(argv[1],"build") == 0){
clock_t start = clock();//Inicio da Contagem do Tempo
Expand Down

0 comments on commit f317cbf

Please sign in to comment.