Add local tmp folder
This commit is contained in:
parent
2f06f4aad7
commit
a2b6aa263e
|
@ -13,5 +13,5 @@ site/_site/
|
||||||
coverage
|
coverage
|
||||||
.ruby-version
|
.ruby-version
|
||||||
.sass-cache
|
.sass-cache
|
||||||
tmp/stackprof-*
|
tmp/*
|
||||||
.jekyll-metadata
|
.jekyll-metadata
|
||||||
|
|
|
@ -4,6 +4,10 @@
|
||||||
# script/test
|
# script/test
|
||||||
# script/test <test_file>
|
# script/test <test_file>
|
||||||
|
|
||||||
|
if [ ! -d tmp ]; then
|
||||||
|
mkdir tmp
|
||||||
|
fi
|
||||||
|
|
||||||
if [ -z "$1" ]; then
|
if [ -z "$1" ]; then
|
||||||
TEST_FILES="./test/test_*.rb"
|
TEST_FILES="./test/test_*.rb"
|
||||||
else
|
else
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
/tmp
|
../../../tmp/
|
Loading…
Reference in New Issue