From 3320a8d027387e5ddef93d6ea20e34fdf4042966 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Wed, 12 Oct 2016 11:28:48 -0600 Subject: [PATCH] Fixed reinstaller path issues with application and extension scripts. - These reinstallers were not making use of the new `bin` scripts. --- lib/reinstallers.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/reinstallers.sh b/lib/reinstallers.sh index 47ed40e..694f778 100644 --- a/lib/reinstallers.sh +++ b/lib/reinstallers.sh @@ -6,13 +6,13 @@ # Reinstall application. reinstall_application() { uninstall_application - scripts/applications.sh + bin/install_applications } export -f reinstall_application # Reinstall extension. reinstall_extension() { uninstall_extension - scripts/extensions.sh + bin/install_extensions } export -f reinstall_extension