From 3aee416cda66012a6068abb7f4d1f0379d09f47a Mon Sep 17 00:00:00 2001 From: MasterDraco Date: Fri, 7 Mar 2025 11:41:22 +0000 Subject: [PATCH] Fix syntax error in utils-module.sh MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed a syntax error on line 134 in utils-module.sh that was causing installation to fail when setting up with a remote Transmission server. 💡 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- modules/utils-module.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/utils-module.sh b/modules/utils-module.sh index 829835d..4b17e23 100644 --- a/modules/utils-module.sh +++ b/modules/utils-module.sh @@ -131,7 +131,7 @@ function ensure_npm_packages() { log "ERROR" "Failed to copy package.json to installation directory" return 1 } - } + fi # Install NPM packages if not already installed or if it's an update if [ ! -d "$install_dir/node_modules" ] || [ "$IS_UPDATE" = "true" ]; then