From 6ba11b40b901f86fab79f47e5e30617cc696b8b8 Mon Sep 17 00:00:00 2001 From: Mikhail Zabaluev Date: Thu, 4 Jul 2019 14:33:33 +0300 Subject: [PATCH] Also remove the ia32 arch from the update script --- update-vscode-flatpak.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-vscode-flatpak.py b/update-vscode-flatpak.py index d62bea2..c4a5fd9 100755 --- a/update-vscode-flatpak.py +++ b/update-vscode-flatpak.py @@ -24,7 +24,7 @@ if VERSION in data['modules'][-1]['sources'][-1]['url']: print('No update needed. Current version: ' + VERSION) sys.exit() -ARCHES = {'x64': -2, 'ia32': -1} +ARCHES = {'x64': -1} for arch, pos in ARCHES.items(): source_entry = data['modules'][-1]['sources'][pos]