Skip to content

Commit

Permalink
fixed crash 'The "data" argument must be of type string or an instanc…
Browse files Browse the repository at this point in the history
…e of Buffer, TypedArray, or DataView. Received undefined'
  • Loading branch information
IgorVNC authored Apr 21, 2021
1 parent b0210c4 commit 2e720f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hooks/lib/ios/xcodePreferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ function loadProjectFile() {
require('shelljs').rm('-rf', frameworks_file);
return;
}
fs.writeFileSync(frameworks_file, JSON.stringify(this.frameworks, null, 4));
fs.writeFileSync(frameworks_file, JSON.stringify(frameworks, null, 4));
}
};
}
Expand Down

0 comments on commit 2e720f9

Please sign in to comment.