From 445e09979e7725ed8bdb5fbdc058e0274828372d Mon Sep 17 00:00:00 2001 From: Bert van der Weerd Date: Wed, 28 Sep 2022 17:26:15 +0200 Subject: [PATCH] adding --no-interactive when running mach to create vs tarball --- linux-mar/Makefile | 2 +- linux/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-mar/Makefile b/linux-mar/Makefile index fa50757..ca95e65 100644 --- a/linux-mar/Makefile +++ b/linux-mar/Makefile @@ -60,7 +60,7 @@ librewolf-$(full_version) : librewolf-$(full_version).source.tar.gz winsdk : $(mozbuild)/vs.tar.zst (mkdir -p $(mozbuild)/win-cross && cd $(mozbuild)/win-cross && rm -rf vs && tar xf ../vs.tar.zst) $(mozbuild)/vs.tar.zst : # cache this file - (cd librewolf-$(full_version) && ./mach python --virtualenv build build/vs/pack_vs.py build/vs/vs2019.yaml -o $(mozbuild)/vs.tar.zst) + (cd librewolf-$(full_version) && ./mach --no-interactive python --virtualenv build build/vs/pack_vs.py build/vs/vs2019.yaml -o $(mozbuild)/vs.tar.zst) bootstrap : dir winsdk (cd librewolf-$(full_version) && ./mach --no-interactive bootstrap --application-choice=browser) diff --git a/linux/Makefile b/linux/Makefile index bb2e003..e5e44b6 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -61,7 +61,7 @@ librewolf-$(full_version) : librewolf-$(full_version).source.tar.gz winsdk : $(mozbuild)/vs.tar.zst (mkdir -p $(mozbuild)/win-cross && cd $(mozbuild)/win-cross && rm -rf vs && tar xf ../vs.tar.zst) $(mozbuild)/vs.tar.zst : # cache this file - (cd librewolf-$(full_version) && ./mach python --virtualenv build build/vs/pack_vs.py build/vs/vs2019.yaml -o $(mozbuild)/vs.tar.zst) + (cd librewolf-$(full_version) && ./mach --no-interactive python --virtualenv build build/vs/pack_vs.py build/vs/vs2019.yaml -o $(mozbuild)/vs.tar.zst) bootstrap : dir winsdk (cd librewolf-$(full_version) && ./mach --no-interactive bootstrap --application-choice=browser)