Skip to content

Commit 11f7cfe

Browse files
committed
fix an error missed COMPOSER_GLOBAL_INSTALL
1 parent d5ffc04 commit 11f7cfe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

workspace/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ ADD ./composer.json /root/.composer/composer.json
7474
# Check if global install need to be runned
7575
ARG COMPOSER_GLOBAL_INSTALL=true
7676
ENV COMPOSER_GLOBAL_INSTALL ${COMPOSER_GLOBAL_INSTALL}
77-
RUN if [ ${INSTALL_PRESTISSIMO} = true ]; then \
77+
RUN if [ ${COMPOSER_GLOBAL_INSTALL} = true ]; then \
7878
# run the install
7979
composer global install \
8080
;fi

0 commit comments

Comments
 (0)