diff --git a/tests/bench-radar/build/lakeprof_report_upload.py b/tests/bench-radar/build/lakeprof_report_upload.py index 8279c3241c..f908ebb9d9 100644 --- a/tests/bench-radar/build/lakeprof_report_upload.py +++ b/tests/bench-radar/build/lakeprof_report_upload.py @@ -35,9 +35,9 @@ def main() -> None: with open("index.html", "w") as f: f.write(template) - run("curl", "-T", "index.html", f"{base_url}/index.html") - run("curl", "-T", "src/lakeprof.log", f"{base_url}/lakeprof.log") - run("curl", "-T", "src/lakeprof.trace_event", f"{base_url}/lakeprof.trace_event") + run("curl", "-fT", "index.html", f"{base_url}/index.html") + run("curl", "-fT", "src/lakeprof.log", f"{base_url}/lakeprof.log") + run("curl", "-fT", "src/lakeprof.trace_event", f"{base_url}/lakeprof.trace_event") if __name__ == "__main__":