| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
cc @nodejs/build-files |
Sorry, something went wrong.
|
cc @nodejs/platform-windows |
Sorry, something went wrong.
Sorry, something went wrong.
There was a problem hiding this comment.
Thanks for the PR!
Sorry, something went wrong.
Sorry, something went wrong.
|
@H4ad Hi, could we merge the pull request. I noticed some warnings/errors as follows in https://ci.nodejs.org/job/node-test-commit/67906/console, but I couldn't help to fix it. 20:26:32 git@github.com: Permission denied (publickey). 20:26:32 fatal: Could not read from remote repository. |
Sorry, something went wrong.
There was a problem hiding this comment.
Would something like this work instead to not suppress other errors?
| :: Suppress "The system cannot find the file specified." on every clean build. | |
| rd %config% > nul 2> nul | |
| if exists %config% rd %config% |
Sorry, something went wrong.
There was a problem hiding this comment.
The correct syntax should be
"IF EXIST file command". However, check whether the file exists doesn't help a lot here because it's safe to remove the link even the link doesn't exists. Both of them works, and RD directly is just more simpler IMO.
Sorry, something went wrong.
There was a problem hiding this comment.
On the other hand, if %config% doesn't exist, it's not necessary to invoke rd, and when it does exist, this approach doesn't silently ignore the output of rd.
Sorry, something went wrong.
There was a problem hiding this comment.
Yes, I updated this pr. Thanks! 😄
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
|
Note @ whoever decides to merge this: the commit queue would incorrectly use the first commit message as the final commit message, so either land this manually or force-push to the PR branch with an amended commit message (but that requires a fresh CI). |
Sorry, something went wrong.
@tniessen so what should I do? Amend the two commits into one, change the commit message then force-push? |
Sorry, something went wrong.
|
That option would be the easiest solution for us, then we only need to re-run CI on the squashed commit :) |
Sorry, something went wrong.
|
@tniessen Thanks, now I reset the last two commits and force pushed the amended log message commit. |
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
Sorry, something went wrong.
PR-URL: nodejs#51437 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #51437 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
PR-URL: #51437 Reviewed-By: Vinícius Lourenço Claro Cardoso <contact@viniciusl.com.br> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
| Back | FazBrowse Home | New Git URL |
I noticed the confusing error like message The system cannot find the file specified. in the CIs and on my first build locally. It's really annoying.
And after some debugging, I found the root case of this error message.
Then this simple pr comes for it!
See also #40749 (comment).