From b20f9cbb8caf9a4bb4c082ef09b9e22837089509 Mon Sep 17 00:00:00 2001 From: CyberMind-FR Date: Sun, 28 Dec 2025 22:02:20 +0100 Subject: [PATCH] fix(sync): Update script path after relocation to secubox-tools MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed sync_module_versions.sh to reference the correct path after moving the Python script from scripts/ to secubox-tools/ directory. Changes: - Updated SCR path: scripts/sync_module_versions.py → secubox-tools/sync_module_versions.py Tested: Script now runs successfully and reports "no changes" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- secubox-tools/sync_module_versions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/secubox-tools/sync_module_versions.sh b/secubox-tools/sync_module_versions.sh index 10fad911..41304518 100755 --- a/secubox-tools/sync_module_versions.sh +++ b/secubox-tools/sync_module_versions.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -euo pipefail REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" -SCR="$REPO_ROOT/scripts/sync_module_versions.py" +SCR="$REPO_ROOT/secubox-tools/sync_module_versions.py" python3 "$SCR"