From a3aa009245efa9b02eef66dbb697466f41a75ded Mon Sep 17 00:00:00 2001
From: Astro <astro@spaceboyz.net>
Date: Tue, 10 Sep 2019 02:22:54 +0200
Subject: [PATCH] hydra: fix l0dables hydra-build-products

---
 hydra/l0dables.nix | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/hydra/l0dables.nix b/hydra/l0dables.nix
index ac79406..7c118b1 100644
--- a/hydra/l0dables.nix
+++ b/hydra/l0dables.nix
@@ -18,7 +18,9 @@ let
       ${oldAttrs.installPhase}
 
       mkdir -p $out/nix-support
-      echo file binary-dist $out/apps/*.elf >> $out/nix-support/hydra-build-products
+      for f in $out/apps/*.elf ; do
+        echo file binary-dist $f >> $out/nix-support/hydra-build-products
+      done
     '';
   });
 in {
-- 
GitLab