From a48176e6b09f77463b090b0d22a1ae75cb869f14 Mon Sep 17 00:00:00 2001 From: Dylan Stephano-Shachter Date: Tue, 15 Sep 2026 06:07:25 +0000 Subject: [PATCH 1/2] pass the directory to noctua --- blueprints/rocks/rocks.just | 1 + 1 file changed, 1 insertion(+) diff --git a/blueprints/rocks/rocks.just b/blueprints/rocks/rocks.just index 37e23fc7..319b18ed 100644 --- a/blueprints/rocks/rocks.just +++ b/blueprints/rocks/rocks.just @@ -226,6 +226,7 @@ release-oci-factory version=latest_version support="minor" risk="stable": --support="{{support}}" \ --risk="{{risk}}" \ --version="$rock_version" \ + --directory="$(git rev-parse --show-prefix)" | tee "$manifest_file" echo; echo "✓ OCI Factory manifest generated" # If there's nothing to upload, exit early From 667b928b264bc0eb7889ec5f90cd7cf907602f93 Mon Sep 17 00:00:00 2001 From: Luca Bello Date: Tue, 15 Sep 2026 10:28:47 +0200 Subject: [PATCH 2/2] fix(rocks.just): add missing line continuation for --directory flag --- blueprints/rocks/rocks.just | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/rocks/rocks.just b/blueprints/rocks/rocks.just index 319b18ed..a20a5547 100644 --- a/blueprints/rocks/rocks.just +++ b/blueprints/rocks/rocks.just @@ -226,7 +226,7 @@ release-oci-factory version=latest_version support="minor" risk="stable": --support="{{support}}" \ --risk="{{risk}}" \ --version="$rock_version" \ - --directory="$(git rev-parse --show-prefix)" + --directory="$(git rev-parse --show-prefix)" \ | tee "$manifest_file" echo; echo "✓ OCI Factory manifest generated" # If there's nothing to upload, exit early