Skip to content
Snippets Groups Projects
Commit e1c5bb65 authored by Stefan Galinski's avatar Stefan Galinski :video_game:
Browse files

[BUGFIX] Don't create wrong symbolic links while installing TYPO3

parent 0b2496c6
No related branches found
No related tags found
No related merge requests found
......@@ -212,12 +212,12 @@ bash 'Setup TYPO3' do
ln -s ../typo3_src-#{node['typo3_site']['typo3_version']} typo3_src
touch typo3conf/ENABLE_INSTALL_TOOL
if [ ! -f typo3 ]
if [ ! -e typo3 ]
then
ln -s typo3_src/typo3 typo3
fi
if [ ! -f index.php ]
if [ ! -e index.php ]
then
ln -s typo3_src/index.php index.php
fi
......
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