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 ncc
|
||||
RUN php INSTALL --auto; cd ../; rm -rf ncc
|
||||
RUN php INSTALL --auto
|
||||
|
||||
# Finalize image
|
||||
RUN mkdir /app
|
||||
|
|
|
@ -65,7 +65,7 @@ RUN chmod +x /usr/local/bin/install-php-extensions && sync && \
|
|||
install-php-extensions zip xsl
|
||||
|
||||
# Install ncc
|
||||
RUN php INSTALL --auto; cd ../; rm -rf ncc
|
||||
RUN php INSTALL --auto
|
||||
|
||||
# Finalize image
|
||||
RUN mkdir /app
|
||||
|
|
|
@ -382,6 +382,11 @@
|
|||
|
||||
foreach($include_paths as $include_path)
|
||||
{
|
||||
if($include_path === '.')
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
if($filesystem->exists($include_path . DIRECTORY_SEPARATOR . 'ncc'))
|
||||
|
|
Loading…
Add table
Reference in a new issue