Skip to content
Snippets Groups Projects
Commit fcf1ba4f authored by James Carroll's avatar James Carroll Committed by Philippe Canal
Browse files

Fix parameter ordering on curl

parent 4460d70c
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ int testPyTorchRegression(){
std::cout << "Get test data..." << std::endl;
TString fname = "./tmva_reg_example.root";
if (gSystem->AccessPathName(fname)) // file does not exist in local directory
gSystem->Exec("curl -O -L http://root.cern.ch/files/tmva_reg_example.root");
gSystem->Exec("curl -L -O http://root.cern.ch/files/tmva_reg_example.root");
TFile *input = TFile::Open(fname);
// Build model from python file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment