@@ -37,15 +37,15 @@ endif
3737
3838help :
3939 @echo " "
40- @echo " usage : make COMMAND "
40+ @echo " Usage : make [command] "
4141 @echo " "
4242 @echo " Commands:"
43- @echo " test Run the test "
44- @echo " test/list List all the test under the tests directory"
45- @echo " test/watch Automatically run the test every second"
46- @echo " env/example Makes a copy of the keys on your .env file "
47- @echo " pre_commit/install Installs the pre-commit hook"
48- @echo " pre_commit/run Function that will be called when the pre-commit runs"
43+ @echo " test Run the tests "
44+ @echo " test/list List all tests under the tests directory"
45+ @echo " test/watch Automatically run tests every second"
46+ @echo " env/example Copy variables without the values from .env into .env.example "
47+ @echo " pre_commit/install Install the pre-commit hook"
48+ @echo " pre_commit/run Function that will be called when the pre-commit hook runs"
4949 @echo " sa Run shellcheck static analysis tool"
5050 @echo " lint Run editorconfig linter tool"
5151
@@ -68,25 +68,25 @@ test/watch: $(TEST_SCRIPTS)
6868 @fswatch -m poll_monitor -or $(SRC_SCRIPTS_DIR ) $(TEST_SCRIPTS_DIR ) .env Makefile | xargs -n1 ./bashunit $(TEST_SCRIPTS )
6969
7070env/example :
71- @echo " Copy the .env into the .env.example file without the values "
71+ @echo " Copying variables without the values from .env into .env.example"
7272 @sed ' s/=.*/=/' .env > .env.example
7373
7474pre_commit/install :
75- @echo " Installing pre-commit hooks "
75+ @echo " Installing pre-commit hook "
7676 cp $(PRE_COMMIT_SCRIPTS_FILE ) $(GIT_DIR ) /hooks/
7777
7878pre_commit/run : test sa lint env/example
7979
8080sa :
8181ifndef STATIC_ANALYSIS_CHECKER
82- @printf "\e[1m\e[31m%s\e[0m\n" "Shellcheck not installed: Static analisys not preformed !" && exit 1
82+ @printf "\e[1m\e[31m%s\e[0m\n" "Shellcheck not installed: Static analysis not performed !" && exit 1
8383else
8484 @shellcheck ./**/*.sh -C && printf "\e[1m\e[32m%s\e[0m\n" "ShellCheck: OK!"
8585endif
8686
8787lint :
8888ifndef LINTER_CHECKER
89- @printf "\e[1m\e[31m%s\e[0m\n" "Editorconfig not installed: Lint not preformed !" && exit 1
89+ @printf "\e[1m\e[31m%s\e[0m\n" "Editorconfig not installed: Lint not performed !" && exit 1
9090else
9191 @ec -config .editorconfig && printf "\e[1m\e[32m%s\e[0m\n" "editorconfig-check: OK!"
9292endif
0 commit comments