rename generate-envrc to generate-env

Signed-off-by: Gaurav Gahlot <gauravgahlot0107@gmail.com>
This commit is contained in:
Gaurav Gahlot
2021-04-16 22:21:10 +05:30
parent 712f3eb38a
commit c40086d221
6 changed files with 8 additions and 8 deletions

View File

@ -57,8 +57,8 @@ resource "null_resource" "tink_directory" {
}
provisioner "file" {
source = "../../generate-envrc.sh"
destination = "/root/tink/generate-envrc.sh"
source = "../../generate-env.sh"
destination = "/root/tink/generate-env.sh"
}
provisioner "file" {

View File

@ -35,7 +35,7 @@ main() (
export DEBIAN_FRONTEND=noninteractive
if [ ! -f ./.env ]; then
./generate-envrc.sh eth1 >.env
./generate-env.sh eth1 >.env
fi
# shellcheck disable=SC1091