Minor improvements for quality of life

This commit is contained in:
Trenton Holmes
2022-05-09 12:05:29 -07:00
parent f8918f56b4
commit 74815a489f
2 changed files with 11 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ search_index() {
if [[ (! -f "$index_version_file") || $(<$index_version_file) != "$index_version" ]]; then
echo "Search index out of date. Updating..."
python3 manage.py document_index reindex
python3 manage.py document_index reindex --no-progress-bar
echo $index_version | tee $index_version_file >/dev/null
fi
}