Skip to content

Commit 65e18db

Browse files
author
Kyrylo Hrechykhin
committed
do not return ignoreNotSupportedFuses value while fuses read
1 parent da1ad85 commit 65e18db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ if (mode === 'read') {
6262

6363
getCurrentFuseWire(argv.app)
6464
.then((config) => {
65-
const { version, resetAdHocDarwinSignature, ...rest } = config;
65+
const { version, resetAdHocDarwinSignature, ignoreNotSupportedFuses, ...rest } = config;
6666
console.log(`Fuse Version: ${chalk.cyan(`v${version}`)}`);
6767

6868
switch (config.version) {
@@ -101,7 +101,7 @@ if (mode === 'read') {
101101

102102
getCurrentFuseWire(argv.app)
103103
.then((config) => {
104-
const { version, resetAdHocDarwinSignature, ...rest } = config;
104+
const { version, resetAdHocDarwinSignature, ignoreNotSupportedFuses, ...rest } = config;
105105
console.log(`Fuse Version: ${chalk.cyan(`v${version}`)}`);
106106

107107
const keyPairs = argv._ || [];

0 commit comments

Comments
 (0)