Skip to content

Commit

Permalink
added missing exclamation mark
Browse files Browse the repository at this point in the history
  • Loading branch information
Guite committed Jun 8, 2020
1 parent c49687c commit 1ec2ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Zikula/CoreInstallerBundle/Helper/ParameterHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ private function writeEnvVars(array $params)
$vars = [
'APP_ENV' => $params['env'] ?? 'prod',
'APP_DEBUG' => isset($params['debug']) ? (int) ($params['debug']) : 0,
'APP_SECRET' => '\'' . $secret . '\'',
'APP_SECRET' => '!\'' . $secret . '\'',
'ZIKULA_INSTALLED' => '\'' . ZikulaKernel::VERSION . '\''
];
(new LocalDotEnvHelper($this->projectDir))->writeLocalEnvVars($vars);
Expand Down

0 comments on commit 1ec2ac4

Please sign in to comment.