Skip to content

Commit

Permalink
Change a few things
Browse files Browse the repository at this point in the history
  • Loading branch information
constarg committed Dec 18, 2023
1 parent f322dc1 commit 9c249a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ project(Sushi_Shuffle C)

set(CMAKE_C_STANDARD 17)

set(SOURCE_FILES main.c ./src/config.c ./src/sorter.c ./src/logger.c ./src/tool/actions.c)
set(SOURCE_FILES ./src/main.c ./src/config.c ./src/sorter.c ./src/logger.c ./src/tool/actions.c)
set(HEADER_FILES ./include/config.h ./include/sorter.h ./include/logger.h ./include/tool/actions.h)
set(TO_INCLUDE ./include/)

Expand Down
4 changes: 2 additions & 2 deletions main.c → src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include <stdio.h>
#endif

const char usage[] = "Usage:\n \tfile-sorter [OPTION] ...\n\n"
const char usage[] = "Usage:\n \tsushi-shuffle [OPTION] ...\n\n"
"\t--start-sorter. Start the sorter service\n"
"\t--set-check-interval [value] Change the value of check interval.\n"
"\t--set-default-dir-path [path] Change the default directory path.\n"
Expand All @@ -25,7 +25,7 @@ const char usage[] = "Usage:\n \tfile-sorter [OPTION] ...\n\n"
"\t--list-targets list targets.\n"
"\t--list-options list options.\n\n\n"
"Each of the above commands will print an OK message on success.\n"
"Check https://github.com/EmbeddedCat/file-sorter-core for more information's about the project!.\n";
"Check https://github.com/constarg/sushi-shuffle for more information's about the project!.\n";

static inline int help()
{
Expand Down

0 comments on commit 9c249a8

Please sign in to comment.