Strip quote marks from env_values

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2022-05-24 20:52:03 -07:00
parent 0c9a1a8922
commit 2b5b3273e2

View file

@ -59,6 +59,10 @@ foreach ($env as $line_num => $line) {
$env_value = trim($env_value);
// Strip out the quote marks if there are any
$env_value = str_replace('"', '',$env_value);
$env_value = str_replace("'", '',$env_value);
/**
* We set this $app_environment here to determine which version of composer to use, --no-dev or with dev dependencies.