From f1d66b28992f1cdf67fa12f3ed6cfbaf1d2eab60 Mon Sep 17 00:00:00 2001 From: Jonathan Cobb Date: Mon, 14 Sep 2020 20:19:38 -0400 Subject: [PATCH] update packer version --- bin/install_packer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install_packer.sh b/bin/install_packer.sh index b0fa2c17..37741365 100755 --- a/bin/install_packer.sh +++ b/bin/install_packer.sh @@ -9,7 +9,7 @@ function die { # Install packer if [[ ! -f ${HOME}/packer/packer ]] ; then - PACKER_VERSION=1.5.6 + PACKER_VERSION=1.6.2 PACKER_FILE=packer_${PACKER_VERSION}_linux_amd64.zip PACKER_URL=https://releases.hashicorp.com/packer/${PACKER_VERSION}/${PACKER_FILE} mkdir -p ${HOME}/packer && cd ${HOME}/packer && wget ${PACKER_URL} && unzip ${PACKER_FILE} || die "Error installing packer"