From 3d0263176ad36baeae85b1c8fae68296e81a1b2c Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Thu, 21 Aug 2025 17:24:10 +0200 Subject: [PATCH] pipeline: add `exec` The current version uses `exec` instead of running this as a script. Change-Id: Iba99753ba556b1713e73255de49b4a5c54867cd5 Signed-off-by: Raito Bezarius --- static-pipeline.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static-pipeline.yaml b/static-pipeline.yaml index 021c06efb..bf788fb5a 100644 --- a/static-pipeline.yaml +++ b/static-pipeline.yaml @@ -1,3 +1,4 @@ +--- # buildkite static setup file, in case the pipeline gets lost steps: @@ -6,4 +7,4 @@ steps: queue: "x86_64-linux" large: true command: | - nix --tarball-ttl 0 run "git+$${BUILDKITE_REPO}?ref=refs/heads/ci-config" + exec nix --tarball-ttl 0 run "git+$${BUILDKITE_REPO}?ref=refs/heads/ci-config"