fermyon / installer

Fermyon Installer
https://fermyon.dev
Apache License 2.0
159 stars 38 forks source link

fix(main.tf): supply curated list of special chars #20

Closed vdice closed 2 years ago

vdice commented 2 years ago

Motivated by cases like the following:

$ printf $HIPPO_PASSWORD | pbcopy
-bash: printf: `[': invalid format character
lann commented 2 years ago

$ printf $HIPPO_PASSWORD | pbcopy

or: $ echo -n "$HIPPO_PASSWORD" | pbcopy

lann commented 2 years ago

$ printf $HIPPO_PASSWORD | pbcopy

or: $ echo -n "$HIPPO_PASSWORD" | pbcopy ?

vdice commented 2 years ago

or: $ echo -n "$HIPPO_PASSWORD" | pbcopy ?

Thanks, yup, I did switch to an echo approach as well... but... still wanted to unblock a known technique.