14 lines
529 B
Bash
Executable file
14 lines
529 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
rm -f ./.terraform.lock.hcl
|
|
|
|
mkdir -p providers/registry.terraform.io/guardianproject/tor/99.0.0/linux_amd64
|
|
mkdir -p providers/registry.opentofu.org/guardianproject/tor/99.0.0/linux_amd64
|
|
cp ../../terraform-provider-tor providers/registry.terraform.io/guardianproject/tor/99.0.0/linux_amd64
|
|
cp ../../terraform-provider-tor providers/registry.opentofu.org/guardianproject/tor/99.0.0/linux_amd64
|
|
|
|
echo ""
|
|
echo "Setup complete! You can now run:"
|
|
echo " ./tf init"
|
|
echo " ./tf plan"
|
|
echo " ./tf apply"
|