From 979341996bfbc03c00fabdef76313f1764d3c756 Mon Sep 17 00:00:00 2001 From: DFRJ Date: Thu, 31 Jul 2025 08:46:00 +0000 Subject: [PATCH] =?UTF-8?q?update=20src/downloadService.py.=20=E5=AE=8C?= =?UTF-8?q?=E5=96=84./jarvis=20-d=E7=9A=84=E5=8A=9F=E8=83=BD=EF=BC=8Cwget?= =?UTF-8?q?=E6=93=8D=E4=BD=9C=E5=89=8D=E8=87=AA=E5=8A=A8=E7=94=9F=E6=95=88?= =?UTF-8?q?init.sh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: DFRJ --- src/downloadService.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/downloadService.py b/src/downloadService.py index 5eee6026..9c20263c 100644 --- a/src/downloadService.py +++ b/src/downloadService.py @@ -33,7 +33,7 @@ yum makecache self.exe.exec_raw(repo_cmd) def gen_wget_url(self, out_dir='./downloads', url='', filename=''): - head = "wget --no-check-certificate" + head = "source ./init.sh && wget --no-check-certificate" file_path = os.path.join(out_dir, filename) download_url = f'{head} {url} -O {file_path}' return download_url -- Gitee