Skip to content

Commit 3ea55a6

Browse files
committed
Fix working directory for ./magento composer
The working directory should not be /var/www/html/web but /var/www/html because that is the project root. This closes issue andreaskoch#5 Thanks @brandontamm for finding this issue.
1 parent e8407a7 commit 3ea55a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

magento

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ executeComposer() {
110110
return 1
111111
fi
112112

113-
$DOCKER exec $containerName composer --working-dir="/var/www/html/web" $@
113+
$DOCKER exec $containerName composer --working-dir="/var/www/html" $@
114114
return 0
115115
}
116116

0 commit comments

Comments
 (0)