ci: remove msys workaround (#30510)

Verified it isn't a problem anymore https://github.com/docker/for-win/issues/2920

PR Close #30510
This commit is contained in:
Filipe Silva 2019-05-28 10:40:18 +01:00 committed by Matias Niemelä
parent 8301028319
commit f1f8d70a41
2 changed files with 1 additions and 12 deletions

View File

@ -117,9 +117,4 @@ RUN Invoke-WebRequest -UseBasicParsing https://www.python.org/ftp/python/3.5.1/p
Start-Process python-3.5.1.exe -ArgumentList '/quiet InstallAllUsers=1 PrependPath=1' -Wait; ` Start-Process python-3.5.1.exe -ArgumentList '/quiet InstallAllUsers=1 PrependPath=1' -Wait; `
Remove-Item -Force python-3.5.1.exe Remove-Item -Force python-3.5.1.exe
# Add a fix for https://github.com/docker/for-win/issues/2920 as entry point to the container. CMD ["cmd.exe"]
SHELL ["cmd", "/c"]
COPY "fix-msys64.cmd" "C:\\fix-msys64.cmd"
ENTRYPOINT cmd /C C:\\fix-msys64.cmd && cmd /c
CMD ["cmd.exe"]

View File

@ -1,6 +0,0 @@
@echo off
REM Fix for https://github.com/docker/for-win/issues/2920
REM echo "Fixing msys64 folder..."
REM Touch all .dll files inside C:\msys64\
forfiles /p C:\msys64\ /s /m *.dll /c "cmd /c Copy /B @path+,, >NUL"
REM echo "Fixed msys64 folder."