From dbc5c1929904c246edaf60fde8f497ce6a0d3c03 Mon Sep 17 00:00:00 2001 From: Paul Sinclair <24625998+sinclairpaul@users.noreply.github.com> Date: Tue, 4 Aug 2020 08:19:26 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=8FFix=20typos=20(#28)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/cache.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cache.sh b/lib/cache.sh index d2d04eb..c1baba1 100644 --- a/lib/cache.sh +++ b/lib/cache.sh @@ -59,7 +59,7 @@ function bashio::cache.set() { if ! bashio::fs.directory_exists "${__BASHIO_CACHE_DIR}"; then mkdir -p "${__BASHIO_CACHE_DIR}" || - basshio::exit.nok "Could not create cache folder" + bashio::exit.nok "Could not create cache folder" fi if ! printf "%s" "$value" > "${__BASHIO_CACHE_DIR}/${key}.cache"; then @@ -100,7 +100,7 @@ bashio::cache.flush_all() { fi if ! rm -f -r "${__BASHIO_CACHE_DIR}"; then - basshio::exit.nok "Could not flush cache" + bashio::exit.nok "Could not flush cache" return "${__BASHIO_EXIT_NOK}" fi