incorrect variable reference

This commit is contained in:
Scott Nowicki 2017-04-19 19:52:02 -05:00
parent af3de7b7df
commit 1653d5da73
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ set -o errexit -o nounset
# generate a unique string for CI deployment
KEY=$(cat /dev/urandom | tr -cd 'a-z' | head -c 12)
PASSWORD=KEY
PASSWORD=$KEY
PASSWORD+=$(cat /dev/urandom | tr -cd 'A-Z' | head -c 2)
PASSWORD+=$(cat /dev/urandom | tr -cd '0-9' | head -c 2)