website-update: Make sqlite loading more robust.
* Bail on the first error. * Allow 30 seconds to open a locked table.
This commit is contained in:
parent
7c379a284e
commit
4c8232a284
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ trap 'rmdir "$LOCKDIR"' 0 INT TERM QUIT
|
||||||
|
|
||||||
exitcode=0
|
exitcode=0
|
||||||
if [ "$DB_SCRIPT" -nt "$DB_FILE" ]; then
|
if [ "$DB_SCRIPT" -nt "$DB_FILE" ]; then
|
||||||
sqlite3 "$DB_FILE" <"$DB_SCRIPT" || exitcode=$?
|
sqlite3 -bail -cmd ".timeout 30000" "$DB_FILE" <"$DB_SCRIPT" || exitcode=$?
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If the checkout is not on the production branch,
|
# If the checkout is not on the production branch,
|
||||||
|
|
Loading…
Reference in a new issue