From 896636fe80c116d85e481b8f43b9c0d10c02ea0d Mon Sep 17 00:00:00 2001 From: Adrien Poupa Date: Sat, 20 Jan 2024 16:16:31 -0500 Subject: [PATCH] chore: fix typo --- update-config.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update-config.sh b/update-config.sh index d8df531..96ef019 100755 --- a/update-config.sh +++ b/update-config.sh @@ -3,7 +3,7 @@ # See https://stackoverflow.com/a/44864004 for the sed GNU/BSD compatible hack function update_config { - echo "Upadting ${1^} configuration..." + echo "Updating ${1^} configuration..." until [ -f ./$1/config.xml ] do sleep 5 @@ -19,7 +19,7 @@ for container in $(docker ps --format '{{.Names}}'); do if [[ $container =~ ^(radarr|sonarr|lidarr|prowlarr)$ ]]; then update_config $container elif [[ $container =~ ^(jellyfin)$ ]]; then - echo "Upadting ${container^} configuration..." + echo "Updating ${container^} configuration..." until [ -f ./$container/network.xml ]; do sleep 5 done