We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b143bc commit 22252f8Copy full SHA for 22252f8
core/utils/npm.py
@@ -31,7 +31,7 @@ def version():
31
32
@staticmethod
33
def download(package, output_file):
34
- output = Npm.run_npm_command('view {0} dist.tarball'.format(package))
+ output = Npm.run_npm_command('view {0} dist.tarball -s'.format(package))
35
assert '.tgz' in output, 'Failed to find tarball of {0} package.'.format(package)
36
npm_package = output.split('/')[-1].split('\n')[0]
37
src_file = os.path.join(Settings.TEST_SUT_HOME, npm_package)
0 commit comments