Mercurial > hg > Feedworm
view backend/couchdb/CouchApp/feedworm/setup.sh @ 211:1ac0b8e2feae
wrap the individual feed update with an exception handler so that a sinlge broken feed doesn't halt the entire update process
author | Dirk Olmes <dirk@xanthippe.ping.de> |
---|---|
date | Mon, 12 Nov 2012 08:10:40 +0100 |
parents | 98eaf0075a44 |
children |
line wrap: on
line source
#!/bin/bash BASE_URL=${1:-http://localhost:5984} DB_URL=${BASE_URL}/feedworm # create the database if it doesn't yet exist curl -f "${DB_URL}" > /dev/null 2>&1 if [ $? -gt 0 ]; then echo -n "creating the database ... " curl -X PUT ${DB_URL} fi couchapp push ${DB_URL}