From 1dba20360d005eb86aee028ac1eae4f32a3fd95f Mon Sep 17 00:00:00 2001 From: Marie-Luise Klaus <32742984+faymarie@users.noreply.github.com> Date: Wed, 11 Dec 2024 17:09:30 +0100 Subject: [PATCH] remove unnecessary line --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 55e4f9a..6a858d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,6 @@ list = "curl --request GET --url https://api.cloud.deepset.ai/api/v2/custom_comp build-windows = "powershell -Command \"& {{ if (-Not (Test-Path dist)) {{mkdir dist}}; if (Test-Path dist/custom_component.zip) {{ Remove-Item dist/custom_component.zip }}; Get-ChildItem -Path . | Where-Object {{ $_.FullName -notlike '*\\dist*' }} | Compress-Archive -DestinationPath dist/custom_component.zip -Update }}" push-windows = "curl --request POST --url https://api.cloud.deepset.ai/api/v2/custom_components --header \"accept: application/json\" --header \"Authorization: Bearer %API_KEY%\" --form \"file=@dist/custom_component.zip;type=application/zip\"" list-windows = "curl --request GET --url https://api.cloud.deepset.ai/api/v2/custom_components --header \"accept: application/json\" --header \"Authorization: Bearer %API_KEY%\"" -[tool.hatch.envs.dc.scripts] logs = "curl --request GET --url https://api.cloud.deepset.ai/api/v2/custom_components/logs --header 'accept: text/plain' --header \"Authorization: Bearer $API_KEY\"" logs-windows = "curl --request GET --url https://api.cloud.deepset.ai/api/v2/custom_components/logs --header \"accept: text/plain\" --header \"Authorization: Bearer %API_KEY%\""