diff --git a/lib/linguist/languages.yml b/lib/linguist/languages.yml index 56032ebb..aa649de8 100644 --- a/lib/linguist/languages.yml +++ b/lib/linguist/languages.yml @@ -2202,6 +2202,7 @@ Shell: - .bash - .bats - .cgi + - .command - .fcgi - .tmux - .zsh diff --git a/samples/Shell/build.command b/samples/Shell/build.command new file mode 100644 index 00000000..8e793c3a --- /dev/null +++ b/samples/Shell/build.command @@ -0,0 +1,30 @@ +set -e + +echo "/************/" +echo "/* BUILDING */" +echo "/************/" +echo "" + +cd `dirname $0` + +cd build + +cmake .. + +make + +echo "" +echo "/***********/" +echo "/* TESTING */" +echo "/***********/" +echo "" + +# ctest .. + +make Experimental + +echo "" +echo "/***********/" +echo "/* SUCCESS */" +echo "/***********/" +echo ""