When trying to set up QIT (see: PaJDYF-6n7-p2), I noticed that we pass the password string (which is set in an env file) in via the common.sh script without " quoting it. This means, if the password contains a space, it gets parsed as a new word rather than the same string, causing the script to fail.
To Reproduce
On develop, use a password with a space in it in the local.env file for the QIT_PASSWORD variable (it doesn't need to be the correct password to see this error).
You should see an error similar to: ` No arguments expected for "partner:add" command, got "".
Describe the bug
When trying to set up QIT (see: PaJDYF-6n7-p2), I noticed that we pass the password string (which is set in an env file) in via the
common.sh
script without"
quoting it. This means, if the password contains a space, it gets parsed as a new word rather than the same string, causing the script to fail.To Reproduce
develop
, use a password with a space in it in thelocal.env
file for theQIT_PASSWORD
variable (it doesn't need to be the correct password to see this error).