terraform: fixes the plugins

The plugins are now part of the binary and cause conflict when available
in the $PATH as well.
This commit is contained in:
zimbatm 2016-08-10 18:01:12 +01:00
parent cbb8ee28b5
commit a4161ac355

View File

@ -15,10 +15,10 @@ buildGoPackage rec {
};
postInstall = ''
# prefix all the plugins with "terraform-"
# remove all plugins, they are part of the main binary now
for i in $bin/bin/*; do
if [[ $(basename $i) != terraform ]]; then
mv -v $i $bin/bin/terraform-$(basename $i);
rm "$i"
fi
done
'';