From 17c0859aa3129a9de8b4a4be3819513e15aaad86 Mon Sep 17 00:00:00 2001 From: Thomas Farr Date: Tue, 3 Oct 2023 18:01:08 +1300 Subject: [PATCH] Correct the cargo make generate-certs target Signed-off-by: Thomas Farr --- Makefile.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.toml b/Makefile.toml index 1d23ddea..95b496eb 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -19,7 +19,8 @@ OPENSEARCH_URL = { value = "${OPENSEARCH_PROTOCOL}://localhost:9200", condition [tasks.generate-certs] category = "OpenSearch" description = "Generates SSL certificates used for integration tests" -command = "bash ./.ci/generate-certs.sh" +command = "bash" +args =["./.ci/generate-certs.sh"] [tasks.run-opensearch] category = "OpenSearch"