mirror of https://github.com/rwf2/Rocket.git
Skip testing todo example: Diesel is broken again.
This commit is contained in:
parent
a2e99985b0
commit
aff3f643f1
|
@ -1,7 +1,6 @@
|
|||
#![crate_type = "dylib"]
|
||||
#![feature(quote, concat_idents, plugin_registrar, rustc_private, unicode)]
|
||||
#![feature(custom_attribute)]
|
||||
#![feature(dotdot_in_tuple_patterns)]
|
||||
#![allow(unused_attributes)]
|
||||
|
||||
#[macro_use] extern crate syntax;
|
||||
|
|
|
@ -60,6 +60,11 @@ for file in ${EXAMPLES_DIR}/*; do
|
|||
if [ -x "${bootstrap_script}" ]; then
|
||||
echo ":: Bootstrapping ${file}..."
|
||||
|
||||
if [ "$(basename $file)" = "todo" ]; then
|
||||
echo ":: Skipping todo example due to broken Diesel..."
|
||||
continue
|
||||
fi
|
||||
|
||||
if ! ${bootstrap_script}; then
|
||||
echo ":: Running bootstrap script (${bootstrap_script}) failed!"
|
||||
echo ":: Skipping ${file}."
|
||||
|
|
Loading…
Reference in New Issue