Skip to content

Commit 31516b6

Browse files
committed
[BUGFIX] Fix symlink paths
1 parent 2046f90 commit 31516b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.ddev/commands/host/initialize

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
## Example: "ddev initialize"
66

77
mkdir -p config/sites/main
8-
ln -snf ../../../../.project/typo3/config.yaml config/sites/main/config.yaml
8+
ln -snf ../../../.project/TYPO3/config.yaml config/sites/main/config.yaml
99
mkdir -p config/system
10-
ln -snf ../../../.project/typo3/settings.php config/system/settings.php
10+
ln -snf ../../.project/TYPO3/settings.php config/system/settings.php
1111

1212
echo "Importing database"
1313
ddev import-db --file=.project/data/db.sql.gz

0 commit comments

Comments
 (0)