terraform: fixes the plugins

fixes the globbing so that the plugins are prefixed properly
This commit is contained in:
zimbatm 2016-05-13 18:12:58 +01:00
parent 8ce8226655
commit 4188f2c91d

View File

@ -3765,7 +3765,12 @@ let
sha256 = "1mf98hagb0yp40g2mbar7aw7hmpq01clnil6y9khvykrb33vy0nb";
postInstall = ''
for i in $bin/bin/{provider,provisioner}-*; do mv $i $bin/bin/terraform-$(basename $i); done
# prefix all the plugins with "terraform-"
for i in $bin/bin/*; do
if [[ ! $(basename $i) =~ terraform* ]]; then
mv -v $i $bin/bin/terraform-$(basename $i);
fi
done
'';
};