From c2a5f47341f41a0b7508e007a8a413a93ba46c02 Mon Sep 17 00:00:00 2001 From: technofab Date: Wed, 24 Apr 2024 21:46:10 +0200 Subject: [PATCH] fix(CI): add missing -D arg for install --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 11df176..1e6516e 100644 --- a/flake.nix +++ b/flake.nix @@ -94,7 +94,7 @@ deps = [pkgs.gnutar]; script = [ "nix build .#\${TEMPLATE}" - "install result templates/\${TEMPLATE}.tf.json" + "install -D result templates/\${TEMPLATE}.tf.json" "tar -cf templates/\${TEMPLATE}.tar -C templates \${TEMPLATE}.tf.json" ]; artifacts.paths = ["templates/"];