-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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 tarball file #3221
Fix tarball file #3221
Conversation
Wait, the revert shouldn't be there, I'll strip it |
b5bc96e
to
a54cd2a
Compare
👍 |
Looks like a few tests failed |
Should be fine now |
@@ -10,11 +10,16 @@ import {getPackageVersion, runInstall} from '../_helpers.js'; | |||
import {promisify} from '../../../src/util/promise'; | |||
|
|||
jasmine.DEFAULT_TIMEOUT_INTERVAL = 150000; | |||
|
|||
test.concurrent = test.skip; |
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.
oops :)
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.
😱
@arcanis, you forgot to reenable tests |
94fa4eb
to
efb8343
Compare
* Fixes #3168 * Adds tests * Fixes linting
This PR fixes relative paths but not absolute ones both on Windows and Unix. |
I could change the regex to: |
It seems to catch everything: https://regex101.com/r/zS5bmW/1 |
Looks good to me, can you send a PR when you have a chance? |
Summary
The offline mirror feature accidentally disabled the codepath that was used for installing packages from
file:
protocol. The tests didn't caught this error because they're using a wrapper class,LocalTarballFetcher
, that wasn't affected by this issue.