We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56b73eb commit 0b9f8ecCopy full SHA for 0b9f8ec
run/fill-db
@@ -273,12 +273,14 @@ done < "$ttl_list_file" 2>&1 \
273
echo
274
if [ -e "$db_dir" ]
275
then
276
+ echo "Moving the current DB to the backup location '$db_bak_dir' ..."
277
rm -Rf "$db_bak_dir"
278
mv "$db_dir" "$db_bak_dir"
- echo "The old DB is now at '$db_bak_dir'."
279
+ echo "Moving the current DB to the backup location '$db_bak_dir' - done."
280
fi
281
+echo "Moving the new/temporary DB to the active location at '$db_dir' ..."
282
mv "$db_tmp_dir" "$db_dir"
-echo "done. (Setting up the DB)"
283
+echo "Moving the new/temporary DB to the active location at '$db_dir' - done."
284
285
286
echo "Ready to run SPARQL queries!"
0 commit comments