diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c0f7d8e1..5a190eb6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,6 +4,7 @@ Contributing When adding new "Hello World" programs, please name the file according to the language it was written in, don't abbreviate the language name too much (so use "JavaScript", not "JS") but don't make it TOO long (so use "CSS" not "Cascading Style Sheets". Use hyphens ("-") as word seperators, and only use a single dot (for seperating the filename from the extension). For exmaple, a "Hello World" program in Objective C should be named "Objective-C.m, and the one in HTML should be named HTML.html. Use -```./genreadme.sh +```bash +./list_langs.py ``` for updating the list of languages in `README.md` (make sure you are in the repository's root directory when invoking those commands). diff --git a/genreadme.sh b/genreadme.sh deleted file mode 100755 index 5ca67988..00000000 --- a/genreadme.sh +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/bash -cat README_nolist.md > README.md; echo >> README.md; echo '### This repository currently contains "Hello World" programs in the following languages:' >> README.md; ruby list_langs.rb >> README.md