Skip to content

Commit 117b87e

Browse files
committed
App fails to load on Windows using deprecated variable
Before this change if you set MOODLE_APP_VERSION to latest the MOODLE_DOCKER_APP_VERSION would be set to "latest" which means it failed to load the app image causing the docker images not to be loaded.
1 parent ddaf009 commit 117b87e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/moodle-docker-compose.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ IF NOT "%MOODLE_APP_VERSION%"=="" (
3838
ECHO Warning: MOODLE_APP_VERSION is deprecated, use MOODLE_DOCKER_APP_VERSION instead
3939

4040
IF "%MOODLE_DOCKER_APP_VERSION%"=="" (
41-
SET MOODLE_DOCKER_APP_VERSION="%MOODLE_APP_VERSION%"
41+
SET MOODLE_DOCKER_APP_VERSION=%MOODLE_APP_VERSION%
4242
)
4343
)
4444

0 commit comments

Comments
 (0)