Skip to content

Commit

Permalink
do not return ignoreNotSupportedFuses value while fuses read
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyrylo Hrechykhin committed Jan 27, 2023
1 parent da1ad85 commit 65e18db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ if (mode === 'read') {

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

switch (config.version) {
Expand Down Expand Up @@ -101,7 +101,7 @@ if (mode === 'read') {

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

const keyPairs = argv._ || [];
Expand Down

0 comments on commit 65e18db

Please sign in to comment.