diff --git a/python/scripts/nas_sync.py b/python/scripts/nas_sync.py index 7444f2e0..41adf572 100755 --- a/python/scripts/nas_sync.py +++ b/python/scripts/nas_sync.py @@ -83,8 +83,8 @@ def download_items(targets, network_folder): for target in targets: if target == 'alpine': alpine_arches = ['aarch64', 'armv7', 'x86', 'x86_64'] - alpine_series = '3.18' - alpine_patch = '.5' + alpine_series = '3.19' + alpine_patch = '.0' alpine_version = alpine_series + alpine_patch for alpine_arch in alpine_arches: @@ -131,7 +131,7 @@ def download_items(targets, network_folder): elif target == 'debian': debian_arches = ['amd64', 'arm64', 'armhf', 'i386'] - debian_ver = '12.2.0' + debian_ver = '12.4.0' for arch in debian_arches: arch_debian_folder = Path(firmware_folder, target.capitalize(), debian_ver, arch)