diff --git a/examples/todo/bootstrap.sh b/examples/todo/bootstrap.sh index e1b5aad4..b78d93c2 100755 --- a/examples/todo/bootstrap.sh +++ b/examples/todo/bootstrap.sh @@ -6,11 +6,11 @@ DATABASE_URL=${SCRIPT_PATH}/db/db.sql pushd $SCRIPT_PATH > /dev/null # install the diesel CLI tools if they're not installed if ! command -v diesel >/dev/null 2>&1; then - cargo install diesel_cli + cargo install diesel_cli > /dev/null fi # create db/db.sql - diesel migration --database-url=$DATABASE_URL run + diesel migration --database-url=$DATABASE_URL run > /dev/null popd $SCRIPT_PATH > /dev/null echo "export DATABASE_URL=$DATABASE_URL"