From cccb43bb9b6562d9bc36b4c8e28c1a23cd2a3c88 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Sun, 11 Aug 2024 12:17:06 -0400 Subject: [PATCH] turn off CA verification as it fails on Windows --- tools/lammps-gui/lammpsgui.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/lammps-gui/lammpsgui.cpp b/tools/lammps-gui/lammpsgui.cpp index e1c3e349be..fd22712e1f 100644 --- a/tools/lammps-gui/lammpsgui.cpp +++ b/tools/lammps-gui/lammpsgui.cpp @@ -1842,9 +1842,9 @@ bool LammpsGui::eventFilter(QObject *watched, QEvent *event) return QWidget::eventFilter(watched, event); } -// current location of the input and solution files on the web -static const QString geturl = "geturl https://raw.githubusercontent.com/" - "akohlmey/lammps-tutorials-inputs/main/tutorial%1/%2 output %2"; +// LAMMPS geturl command with current location of the input and solution files on the web +static const QString geturl = "geturl https://raw.githubusercontent.com/akohlmey/" + "lammps-tutorials-inputs/main/tutorial%1/%2 output %2 verify no"; void LammpsGui::setup_tutorial(int tutno, const QString &dir, bool purgedir, bool getsolution) {