-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix for issue #56: dummyName does not exist error #62
base: master
Are you sure you want to change the base?
Conversation
…ename of folder
Just encountered this. It's real and if this PR fixes it it should be merged. |
Addendum: could have left this alone and called it bitrot on a repo that hasn't had much activity in awhile. The world is full of problems like this though so since I encountered it, I'll be the squeaky wheel. @cwilhit -- you're the most recent commit on this repo. Should this be merged / is this repo deprecated and there's a better way to install the docker engine for windows via powershell? Thanks :) |
I've have the same problem in a windows server VM: `PS C:\Program Files> Install-Package -Name Docker -ProviderName DockerMsftProvider -Update -Force -Verbose
|
I just encountered this error on windows server 2019. Seeing that it was a race condition prompted me to try running the same command again; it worked. Until this is merged, anybody googling the error and arriving here could try this workaround: just retry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There is a timing issue between unzip and rename of docker folder to dummyName where it appears the Expand-Archive command hasn't fully released all locks even though the command has completed.
This fix retries until rename is successful.
Alternatively, the rename step could probably be removed completely.