lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

terraform: fixes the plugins

The plugins are now part of the binary and cause conflict when available
in the $PATH as well.

+2 -2
+2 -2
pkgs/applications/networking/cluster/terraform/default.nix
··· 15 15 }; 16 16 17 17 postInstall = '' 18 - # prefix all the plugins with "terraform-" 18 + # remove all plugins, they are part of the main binary now 19 19 for i in $bin/bin/*; do 20 20 if [[ $(basename $i) != terraform ]]; then 21 - mv -v $i $bin/bin/terraform-$(basename $i); 21 + rm "$i" 22 22 fi 23 23 done 24 24 '';