mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 17:50:22 +00:00
Merge branch 'master' into 1036-local
This commit is contained in:
@@ -2202,6 +2202,7 @@ Shell:
|
|||||||
- .bash
|
- .bash
|
||||||
- .bats
|
- .bats
|
||||||
- .cgi
|
- .cgi
|
||||||
|
- .command
|
||||||
- .fcgi
|
- .fcgi
|
||||||
- .tmux
|
- .tmux
|
||||||
- .zsh
|
- .zsh
|
||||||
|
|||||||
30
samples/Shell/build.command
Normal file
30
samples/Shell/build.command
Normal file
@@ -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 ""
|
||||||
@@ -14,4 +14,5 @@ set +x
|
|||||||
mkdir -p ./vendor/gems
|
mkdir -p ./vendor/gems
|
||||||
|
|
||||||
bundle install --local --path ./vendor/gems
|
bundle install --local --path ./vendor/gems
|
||||||
|
bundle exec rake samples
|
||||||
bundle exec rake
|
bundle exec rake
|
||||||
|
|||||||
Reference in New Issue
Block a user