cypress 9.5.0 → 9.5.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,6 +2,8 @@
2
2
 
3
3
  const _ = require('lodash');
4
4
 
5
+ const arch = require('arch');
6
+
5
7
  const os = require('os');
6
8
 
7
9
  const url = require('url');
@@ -129,7 +131,7 @@ const getBinaryUrlFromPrereleaseNpmUrl = npmUrl => {
129
131
  version,
130
132
  artifactSlug
131
133
  } = matches.groups;
132
- parsed.pathname = `/beta/binary/${version}/${os.platform()}-${os.arch()}/${artifactSlug}/cypress.zip`;
134
+ parsed.pathname = `/beta/binary/${version}/${os.platform()}-${arch()}/${artifactSlug}/cypress.zip`;
133
135
  return parsed.format();
134
136
  };
135
137
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cypress",
3
- "version": "9.5.0",
3
+ "version": "9.5.1",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "postinstall": "node index.js --exec install",