Corrects the functionality of the webp conversion script

This commit is contained in:
Trenton Holmes
2022-06-10 08:56:25 -07:00
parent fe9082fda8
commit ce2958531a
3 changed files with 67 additions and 38 deletions

View File

@@ -2,7 +2,19 @@
set -eu
for command in document_archiver document_exporter document_importer mail_fetcher document_create_classifier document_index document_renamer document_retagger document_thumbnails document_sanity_checker manage_superuser;
for command in convert_thumbnails \
decrypt_documents \
document_archiver \
document_exporter \
document_importer \
mail_fetcher \
document_create_classifier \
document_index \
document_renamer \
document_retagger \
document_thumbnails \
document_sanity_checker \
manage_superuser;
do
echo "installing $command..."
sed "s/management_command/$command/g" management_script.sh > /usr/local/bin/$command