From ca80df3032b40d57f84c5710af09898ac05d8a29 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 26 May 2020 14:41:04 +0200 Subject: [PATCH] Bug 20116: Fix package install path for clear_cache.pl root@koha-debian10:~# koha-translate --install es-ES /bin/bash: /usr/share/koha/misc/bin/clear_cache.pl: No such file or directory The script is in /usr/share/koha/bin/clear_cache.pl --- debian/scripts/koha-translate | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/scripts/koha-translate b/debian/scripts/koha-translate index 8b9c6b664f..69936c000e 100755 --- a/debian/scripts/koha-translate +++ b/debian/scripts/koha-translate @@ -234,7 +234,7 @@ init_template_paths() flush_cache() { if [ "$dev" = "" ]; then - koha-foreach --enabled "$KOHA_HOME/misc/bin/clear_cache.pl" + koha-foreach --enabled "$KOHA_HOME/bin/clear_cache.pl" else koha-shell $dev -c "$KOHA_HOME/misc/bin/clear_cache.pl" fi -- 2.20.1