about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xjustfile12
1 files changed, 6 insertions, 6 deletions
diff --git a/justfile b/justfile
index 5154fa7..e347d98 100755
--- a/justfile
+++ b/justfile
@@ -56,18 +56,18 @@ docker-stream-fly:
 
 docker-image-fly: (docker-image fly-system)
 
-docker-inspect image-path="result" *skopeo-flags="":
-    skopeo {{ skopeo-flags }} inspect docker-archive:{{ image-path }}
+docker-inspect image-path="result":
+    skopeo inspect docker-archive:{{ image-path }}
 
 print-docker-tag:
     @echo {{ fly-registry }}:{{ docker-tag }}
 
-stream-to-registry *skopeo-flags="": sentry-create-release && sentry-finalise-release
-    just docker-stream-fly | gzip --fast | skopeo {{ skopeo-flags }} copy --dest-precompute-digests docker-archive:/dev/stdin docker://{{ fly-registry }}:{{ docker-tag }}
+stream-to-registry : sentry-create-release && sentry-finalise-release
+    just docker-stream-fly | gzip --fast | skopeo copy --dest-precompute-digests docker-archive:/dev/stdin docker://{{ fly-registry }}:{{ docker-tag }}
 
 result := `readlink -f result`
-push-to-registry *skopeo-flags="": sentry-create-release && sentry-finalise-release
-    skopeo {{ skopeo-flags }} copy --dest-precompute-digests docker-archive://{{ result }}  docker://{{ fly-registry }}:{{ docker-tag }}
+push-to-registry: sentry-create-release && sentry-finalise-release
+    skopeo copy --dest-precompute-digests docker-archive://{{ result }}  docker://{{ fly-registry }}:{{ docker-tag }}
 
 sentry-create-release:
     sentry-cli releases new {{ version }}