Skip to content
Snippets Groups Projects
Commit ffa41c50 authored by Carsten  Rose's avatar Carsten Rose
Browse files

setVersion.sh: fix missing comma.

parent 3106b977
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@ $EM_CONF[$_EXTKEY] = array(
'dependencies' => 'fluid,extbase',
'clearcacheonload' => true,
'state' => 'stable',
'version' => '18.4.3'
'version' => '18.4.3',
'constraints' => [
'depends' => [
'typo3' => '6.0.0-9.2.99',
......
......@@ -25,7 +25,7 @@ function settingsCfg() {
function extEmConf() {
FILE="extension/ext_emconf.php"
sed -i -r 's/^\s*'${ST}'version'${ST}'\s*=>.+$/ '${ST}'version'${ST}' => '${ST}${VERSION}${ST}'/g' ${FILE}
sed -i -r 's/^\s*'${ST}'version'${ST}'\s*=>.+$/ '${ST}'version'${ST}' => '${ST}${VERSION}${ST},'/g' ${FILE}
}
function versionFile() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment