ingest script: filter out too verbose warning

This commit is contained in:
Johan Le Baut 2022-10-14 10:56:42 +02:00
parent 4c8a59e64c
commit 6822ec4866
1 changed files with 6 additions and 1 deletions

View File

@ -31,7 +31,12 @@ EOF
done
echo ""
sqlite3 "${fullDbPath}" < "${tmpSql}"
rc=0
sqlite3 "${fullDbPath}" < "${tmpSql}" 2>&1 | grep -v "filling the rest with NULL" || rc="${PIPESTATUS[0]}"
if [[ $rc -ne 0 ]]; then
echo "Error executing sqlite import"
exit "$rc"
fi
echo "[+] Ingesting spatial data."