From 52792c38e1972a4a60a620b1ba565e9e0b7c6ccd Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 7 Oct 2019 13:14:40 +0800 Subject: [PATCH] conda-channel: symlink packages instead of copying them --- artiq-full/conda-channel.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq-full/conda-channel.nix b/artiq-full/conda-channel.nix index 23eb98a..ad873f2 100644 --- a/artiq-full/conda-channel.nix +++ b/artiq-full/conda-channel.nix @@ -14,7 +14,7 @@ in type=`echo $line | cut -f2 -d " "` if [ $type == "conda" ]; then path=`echo $line | cut -f3 -d " "` - cp $path $out/noarch + ln -s $path $out/noarch fi done < $hydra_build_products fi