Skip to content

Commit b0b650d

Browse files
committed
Updated help command
1 parent c01634f commit b0b650d

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

Makefile

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,30 @@ help:
2020
@echo
2121
@echo "Usage: make command [LANG=<language_short_code>]"
2222
@echo
23-
@echo " LANG : Language short codes are found in LANGS.md. Default is 'en'(English)."
24-
@echo " ( Refer $(LANG_FILE) for short codes of Languages avaiable. )"
23+
@echo " LANG: Language shortcodes are found in LANGS.md. Default is 'en'(English)."
24+
@echo " ( Refer $(LANG_FILE) for shortcodes of Languages available. )"
2525
@echo
2626
@echo "Commands:"
2727
@echo " help - Display make command list."
28-
@echo " dev - Setup project and start the development server with debugging enabled."
29-
@echo " check - Check for root directory for various dependencies."
28+
@echo " dev - Setup the project and start the development server with debugging enabled."
29+
@echo " check - Check for the root directory for various dependencies."
3030
@echo " setup - Setup the temporary language and install node dependencies for the development."
3131
@echo " build - Build the honkit project."
3232
@echo " build-dev - Build the honkit project with debug log."
3333
@echo " serve - Start honkit server locally for development."
34-
@echo " pdf - Generate PDF version of DjangoGirls tutorial."
35-
@echo " epub - Generate EPUB version of DjangoGirls tutorial."
36-
@echo " mobi - Generate MOBI version of DjangoGirls tutorial."
34+
@echo " pdf - Generate the PDF version of DjangoGirls tutorial."
35+
@echo " epub - Generate the EPUB version of DjangoGirls tutorial."
36+
@echo " mobi - Generate the MOBI version of DjangoGirls tutorial."
3737
@echo " mode - Shows the development mode status."
3838
@echo " exit - Exit development mode."
3939
@echo
40+
@echo "Example:"
41+
@echo
42+
@echo "$$ make dev LANG=es"
43+
@echo
44+
@echo "The above command will start the development server using the language Español."
45+
@echo "'LANG' argument is only required the first time until the exit command is executed."
46+
@echo
4047

4148
node_modules:
4249
@npm install

0 commit comments

Comments
 (0)