···1515 };
16161717 postInstall = ''
1818- # prefix all the plugins with "terraform-"
1818+ # remove all plugins, they are part of the main binary now
1919 for i in $bin/bin/*; do
2020 if [[ $(basename $i) != terraform ]]; then
2121- mv -v $i $bin/bin/terraform-$(basename $i);
2121+ rm "$i"
2222 fi
2323 done
2424 '';