From e377fcb6ae9333c72ce4f701238c76c8f848eff8 Mon Sep 17 00:00:00 2001 From: Dave Conroy Date: Mon, 19 Dec 2022 12:35:33 -0800 Subject: [PATCH] Fix spelling mistake in Archive notice --- install/assets/functions/10-db-backup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/assets/functions/10-db-backup b/install/assets/functions/10-db-backup index 27bd20d..e6cde2a 100644 --- a/install/assets/functions/10-db-backup +++ b/install/assets/functions/10-db-backup @@ -587,7 +587,7 @@ compression() { create_archive() { if [ "${exit_code}" = "0" ] ; then - print_notice "Creating archive file of '${target_dir}' with tar ${compresion_string}" + print_notice "Creating archive file of '${target_dir}' with tar ${compression_string}" tar cf - "${TEMP_LOCATION}"/"${target_dir}" | $dir_compress_cmd > "${TEMP_LOCATION}"/"${target_dir}".tar"${extension}" else print_error "Skipping creating archive file because backup did not complete successfully"