Skip to content

Commit 0b9e921

Browse files
Merge branch 'main' into chore/update-dependencies
2 parents 3295954 + 7d18704 commit 0b9e921

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

packages/cli/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @graphprotocol/graph-cli
22

3+
## 0.91.1
4+
5+
### Patch Changes
6+
7+
- [#1783](https://github.com/graphprotocol/graph-tooling/pull/1783)
8+
[`ea1d948`](https://github.com/graphprotocol/graph-tooling/commit/ea1d94863783e19a379ce6d545d5f8523d8bf9e8)
9+
Thanks [@YaroShkvorets](https://github.com/YaroShkvorets)! - Fix bug with network selection
10+
311
## 0.91.0
412

513
### Minor Changes

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@graphprotocol/graph-cli",
3-
"version": "0.91.0",
43
"type": "module",
4+
"version": "0.91.1",
55
"description": "CLI for building for and deploying to The Graph",
66
"license": "(Apache-2.0 OR MIT)",
77
"engines": {

packages/cli/src/commands/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ async function getPlatform(
180180
const type = os.type();
181181
const arch = os.arch();
182182
const cpuCore = os.cpus()[0];
183-
const isAppleSilicon = arch === 'arm64' && /Apple (M1|M2|M3|processor)/.test(cpuCore.model);
183+
const isAppleSilicon = arch === 'arm64' && /Apple (M1|M2|M3|M4|processor)/.test(cpuCore.model);
184184
const linuxInfo = type === 'Linux' ? await getLinuxInfo.bind(this)() : {};
185185
const linuxDistro = linuxInfo.name;
186186
const release = linuxInfo.version || os.release();

0 commit comments

Comments
 (0)