Minor corrections
This commit is contained in:
parent
e3ac3cf7a3
commit
d434345c59
3 changed files with 7 additions and 2 deletions
|
@ -65,7 +65,7 @@ RUN chmod +x /usr/local/bin/install-php-extensions && sync && \
|
||||||
install-php-extensions zip xsl
|
install-php-extensions zip xsl
|
||||||
|
|
||||||
# Install ncc
|
# Install ncc
|
||||||
RUN php INSTALL --auto; cd ../; rm -rf ncc
|
RUN php INSTALL --auto
|
||||||
|
|
||||||
# Finalize image
|
# Finalize image
|
||||||
RUN mkdir /app
|
RUN mkdir /app
|
||||||
|
|
|
@ -65,7 +65,7 @@ RUN chmod +x /usr/local/bin/install-php-extensions && sync && \
|
||||||
install-php-extensions zip xsl
|
install-php-extensions zip xsl
|
||||||
|
|
||||||
# Install ncc
|
# Install ncc
|
||||||
RUN php INSTALL --auto; cd ../; rm -rf ncc
|
RUN php INSTALL --auto
|
||||||
|
|
||||||
# Finalize image
|
# Finalize image
|
||||||
RUN mkdir /app
|
RUN mkdir /app
|
||||||
|
|
|
@ -382,6 +382,11 @@
|
||||||
|
|
||||||
foreach($include_paths as $include_path)
|
foreach($include_paths as $include_path)
|
||||||
{
|
{
|
||||||
|
if($include_path === '.')
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
if($filesystem->exists($include_path . DIRECTORY_SEPARATOR . 'ncc'))
|
if($filesystem->exists($include_path . DIRECTORY_SEPARATOR . 'ncc'))
|
||||||
|
|
Loading…
Add table
Reference in a new issue