From 5add6d1916fea3a8c1180a457d0108420bb558bb Mon Sep 17 00:00:00 2001 From: Andrew Hamilton Date: Wed, 10 Jul 2019 11:28:53 +1000 Subject: [PATCH] Fixed build not downloading. --- build-flatpak.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-flatpak.py b/build-flatpak.py index 80f1eb6..4854204 100755 --- a/build-flatpak.py +++ b/build-flatpak.py @@ -38,7 +38,7 @@ manifest_path, build_dir, state_dir = sys.argv[1:4] patched_manifest_path = "manifests-cache/patched-manifest.json" patch_manifest(manifest_path, patched_manifest_path) subprocess.run(["flatpak-builder", build_dir, patched_manifest_path, - "--force-clean", "--disable-download", "--state-dir", state_dir], check=True) + "--force-clean", "--state-dir", state_dir], check=True) subprocess.run(["flatpak", "build", build_dir, "test-all"], check=True) subprocess.run(["flatpak", "build", build_dir, "eris", "--help"], check=True) print("Build successful:", build_dir)